diff --git a/apps/api/src/main.rs b/apps/api/src/main.rs index 5fe152baed..3d6b2fa9c2 100644 --- a/apps/api/src/main.rs +++ b/apps/api/src/main.rs @@ -426,6 +426,10 @@ async fn app_with_env(env: &'static crate::env::RuntimeConfig) -> Router { rate_limit::rate_limit, )); + let scim_routes = match subscription_config.clone() { + Some(config) => anlg_api_subscription::scim_router(config), + None => Router::new(), + }; let subscription_routes = match subscription_config { Some(config) => { let router = anlg_api_subscription::router(config); @@ -458,6 +462,7 @@ async fn app_with_env(env: &'static crate::env::RuntimeConfig) -> Router { .nest("/sync", sync_routes) .merge(integration_routes) .merge(integration_management_routes) + .nest("/scim/v2", scim_routes) .merge(auth_routes) .layer( CorsLayer::new() diff --git a/apps/desktop/src/enterprise-capture/client.test.ts b/apps/desktop/src/enterprise-capture/client.test.ts index 45be379055..657ae95400 100644 --- a/apps/desktop/src/enterprise-capture/client.test.ts +++ b/apps/desktop/src/enterprise-capture/client.test.ts @@ -3,7 +3,9 @@ import { beforeEach, describe, expect, it, vi } from "vitest"; import { acknowledgeSessionDelivery, + cancelScheduledCapture, EnterpriseCaptureClientError, + listScheduledCaptures, listSessionDeliveries, } from "./client"; @@ -105,6 +107,44 @@ describe("enterprise capture client", () => { }); }); + it("lists and cancels upcoming scheduled captures", async () => { + const scheduled = { + calendarEventId: "evt-1", + title: "Standup", + startsAt: "2026-08-21T15:00:00Z", + status: "pending", + jobId: "cal-evt-1", + }; + vi.mocked(fetch).mockResolvedValueOnce(jsonResponse([scheduled])); + + await expect( + listScheduledCaptures({ + serverUrl: "https://capture.example.test/control/", + accessToken: "access-token", + workspaceId: "workspace 1", + }), + ).resolves.toEqual([scheduled]); + expect(vi.mocked(fetch).mock.calls[0]?.[0]).toBe( + "https://capture.example.test/control/v1/workspaces/workspace%201/scheduled-captures", + ); + + vi.mocked(fetch).mockResolvedValueOnce( + jsonResponse({ ...scheduled, status: "canceled" }), + ); + await expect( + cancelScheduledCapture({ + serverUrl: "https://capture.example.test", + accessToken: "access-token", + workspaceId: "workspace-1", + calendarEventId: "evt/1", + }), + ).resolves.toMatchObject({ status: "canceled" }); + expect(String(vi.mocked(fetch).mock.calls[1]?.[0])).toContain( + "/scheduled-captures/evt%2F1", + ); + expect(vi.mocked(fetch).mock.calls[1]?.[1]?.method).toBe("DELETE"); + }); + it("rejects an oversized response without a declared content length", async () => { const chunk = new Uint8Array(1024 * 1024); let chunksRead = 0; diff --git a/apps/desktop/src/enterprise-capture/client.ts b/apps/desktop/src/enterprise-capture/client.ts index 5cd77fcf70..b9308d9959 100644 --- a/apps/desktop/src/enterprise-capture/client.ts +++ b/apps/desktop/src/enterprise-capture/client.ts @@ -1,6 +1,6 @@ import { fetch } from "@tauri-apps/plugin-http"; -import type { DeliveryItem, DeliveryPage } from "./types"; +import type { DeliveryItem, DeliveryPage, ScheduledCapture } from "./types"; const REQUEST_TIMEOUT_MS = 30_000; const MAX_PAGE_BYTES = 24 * 1024 * 1024; @@ -66,6 +66,45 @@ export async function acknowledgeSessionDelivery(input: { } } +export async function listScheduledCaptures(input: { + serverUrl: string; + accessToken: string; + workspaceId: string; +}): Promise { + const body = await request( + endpoint( + input.serverUrl, + `v1/workspaces/${encodeURIComponent(input.workspaceId)}/scheduled-captures`, + ), + input.accessToken, + ); + if (!Array.isArray(body)) { + throw new EnterpriseCaptureClientError( + "invalid_response", + "The capture server returned an invalid scheduled capture list.", + ); + } + return body.map(parseScheduledCapture); +} + +export async function cancelScheduledCapture(input: { + serverUrl: string; + accessToken: string; + workspaceId: string; + calendarEventId: string; +}): Promise { + return parseScheduledCapture( + await request( + endpoint( + input.serverUrl, + `v1/workspaces/${encodeURIComponent(input.workspaceId)}/scheduled-captures/${encodeURIComponent(input.calendarEventId)}`, + ), + input.accessToken, + { method: "DELETE" }, + ), + ); +} + async function request( url: URL, accessToken: string, @@ -215,6 +254,34 @@ function parseDeliveryItem(value: unknown): DeliveryItem { }; } +function parseScheduledCapture(value: unknown): ScheduledCapture { + if ( + !isObject(value) || + typeof value.calendarEventId !== "string" || + value.calendarEventId.length === 0 || + typeof value.title !== "string" || + typeof value.startsAt !== "string" || + !Number.isFinite(Date.parse(value.startsAt)) || + (value.status !== "pending" && + value.status !== "skipped" && + value.status !== "canceled" && + value.status !== "dispatched") || + (value.jobId !== null && typeof value.jobId !== "string") + ) { + throw new EnterpriseCaptureClientError( + "invalid_response", + "The capture server returned an invalid scheduled capture.", + ); + } + return { + calendarEventId: value.calendarEventId, + title: value.title, + startsAt: value.startsAt, + status: value.status, + jobId: value.jobId, + }; +} + function integer(value: unknown, _field: string, allowZero = false): number { if ( typeof value !== "number" || diff --git a/apps/desktop/src/enterprise-capture/types.ts b/apps/desktop/src/enterprise-capture/types.ts index ec6ddbde3a..d837a4d70d 100644 --- a/apps/desktop/src/enterprise-capture/types.ts +++ b/apps/desktop/src/enterprise-capture/types.ts @@ -36,3 +36,11 @@ export type PendingCompletion = { sessionId: string; revision: number; }; + +export type ScheduledCapture = { + calendarEventId: string; + title: string; + startsAt: string; + status: "pending" | "skipped" | "canceled" | "dispatched"; + jobId: string | null; +}; diff --git a/apps/desktop/src/i18n/locales/af/messages.po b/apps/desktop/src/i18n/locales/af/messages.po index e6daf35678..01b96154c6 100644 --- a/apps/desktop/src/i18n/locales/af/messages.po +++ b/apps/desktop/src/i18n/locales/af/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/af/messages.ts b/apps/desktop/src/i18n/locales/af/messages.ts index b0d584eb35..16ae72d687 100644 --- a/apps/desktop/src/i18n/locales/af/messages.ts +++ b/apps/desktop/src/i18n/locales/af/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hooftaal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Voeg taal by\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Begin wanneer vergadering begin\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Voeg gesproke taal by\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Soek taal...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Taal en streek\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Deel gebruiksdata\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Toepassing\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Bykomende gesproke tale\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Begin Anarlog by aanmelding\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Kennisgewings\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stop wanneer vergadering eindig\"],\"jzmguI\":[\"Vergaderings\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Geen passende tale gevind nie\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Kies taal\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hooftaal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Voeg taal by\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Begin wanneer vergadering begin\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Voeg gesproke taal by\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Soek taal...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Taal en streek\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Deel gebruiksdata\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Toepassing\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Bykomende gesproke tale\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Begin Anarlog by aanmelding\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Kennisgewings\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stop wanneer vergadering eindig\"],\"jzmguI\":[\"Vergaderings\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Geen passende tale gevind nie\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Kies taal\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/am/messages.po b/apps/desktop/src/i18n/locales/am/messages.po index 7fcb9b1d79..1e00082048 100644 --- a/apps/desktop/src/i18n/locales/am/messages.po +++ b/apps/desktop/src/i18n/locales/am/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/am/messages.ts b/apps/desktop/src/i18n/locales/am/messages.ts index ce1b923bff..f59314776c 100644 --- a/apps/desktop/src/i18n/locales/am/messages.ts +++ b/apps/desktop/src/i18n/locales/am/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ዋና ቋንቋ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ቋንቋ አክል\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ስብሰባ ሲጀምር ጀምር\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"የሚነገር ቋንቋ ያክሉ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ቋንቋ ፈልግ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ቋንቋ እና ክልል\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"የአጠቃቀም ውሂብ አጋራ\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"መተግበሪያ\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ተጨማሪ የሚነገሩ ቋንቋዎች\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"በመግቢያው ላይ አናርሎግ ይጀምሩ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"ማሳወቂያዎች\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ስብሰባው ሲያልቅ ያቁሙ\"],\"jzmguI\":[\"ስብሰባዎች\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ምንም ተዛማጅ ቋንቋዎች አልተገኙም\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ቋንቋ ምረጥ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ዋና ቋንቋ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ቋንቋ አክል\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ስብሰባ ሲጀምር ጀምር\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"የሚነገር ቋንቋ ያክሉ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ቋንቋ ፈልግ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ቋንቋ እና ክልል\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"የአጠቃቀም ውሂብ አጋራ\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"መተግበሪያ\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ተጨማሪ የሚነገሩ ቋንቋዎች\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"በመግቢያው ላይ አናርሎግ ይጀምሩ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"ማሳወቂያዎች\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ስብሰባው ሲያልቅ ያቁሙ\"],\"jzmguI\":[\"ስብሰባዎች\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ምንም ተዛማጅ ቋንቋዎች አልተገኙም\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ቋንቋ ምረጥ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ar/messages.po b/apps/desktop/src/i18n/locales/ar/messages.po index 5c7251b89a..24eaa43c1e 100644 --- a/apps/desktop/src/i18n/locales/ar/messages.po +++ b/apps/desktop/src/i18n/locales/ar/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ar/messages.ts b/apps/desktop/src/i18n/locales/ar/messages.ts index 43c945eaee..2162fce9bd 100644 --- a/apps/desktop/src/i18n/locales/ar/messages.ts +++ b/apps/desktop/src/i18n/locales/ar/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"اللغة الرئيسية\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"إضافة لغة\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ابدأ عندما يبدأ الاجتماع\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"إضافة لغة منطوقة\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"لغة البحث...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"اللغة والمنطقة\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"مشاركة بيانات الاستخدام\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"التطبيق\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"اللغات المنطوقة الإضافية\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ابدأ Anarlog عند تسجيل الدخول\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"الإشعارات\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"توقف عند انتهاء الاجتماع\"],\"jzmguI\":[\"الاجتماعات\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"لم يتم العثور على لغات مطابقة\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"حدد اللغة\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"اللغة الرئيسية\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"إضافة لغة\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ابدأ عندما يبدأ الاجتماع\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"إضافة لغة منطوقة\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"لغة البحث...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"اللغة والمنطقة\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"مشاركة بيانات الاستخدام\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"التطبيق\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"اللغات المنطوقة الإضافية\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ابدأ Anarlog عند تسجيل الدخول\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"الإشعارات\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"توقف عند انتهاء الاجتماع\"],\"jzmguI\":[\"الاجتماعات\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"لم يتم العثور على لغات مطابقة\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"حدد اللغة\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/as/messages.po b/apps/desktop/src/i18n/locales/as/messages.po index efd716f78c..766eec483b 100644 --- a/apps/desktop/src/i18n/locales/as/messages.po +++ b/apps/desktop/src/i18n/locales/as/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/as/messages.ts b/apps/desktop/src/i18n/locales/as/messages.ts index e97f0f4276..7c26483a46 100644 --- a/apps/desktop/src/i18n/locales/as/messages.ts +++ b/apps/desktop/src/i18n/locales/as/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"মূল ভাষা\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ভাষা যোগ কৰক\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"মিটিং আৰম্ভ হ'লে আৰম্ভ কৰক\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"কথিত ভাষা যোগ কৰক\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"অন্বেষণ ভাষা...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ভাষা আৰু অঞ্চল\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ব্যৱহাৰৰ তথ্য অংশীদাৰী কৰক\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"এপ্প\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"অতিৰিক্ত কথিত ভাষা\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"প্ৰৱেশৰ সময়ত Anarlog আৰম্ভ কৰক\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"জাননীসমূহ\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"মিটিং শেষ হ'লে বন্ধ কৰক\"],\"jzmguI\":[\"সভাসমূহ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"কোনো মিল থকা ভাষা পোৱা নগ'ল\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ভাষা নিৰ্বাচন কৰক\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"মূল ভাষা\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ভাষা যোগ কৰক\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"মিটিং আৰম্ভ হ'লে আৰম্ভ কৰক\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"কথিত ভাষা যোগ কৰক\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"অন্বেষণ ভাষা...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ভাষা আৰু অঞ্চল\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ব্যৱহাৰৰ তথ্য অংশীদাৰী কৰক\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"এপ্প\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"অতিৰিক্ত কথিত ভাষা\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"প্ৰৱেশৰ সময়ত Anarlog আৰম্ভ কৰক\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"জাননীসমূহ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"মিটিং শেষ হ'লে বন্ধ কৰক\"],\"jzmguI\":[\"সভাসমূহ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"কোনো মিল থকা ভাষা পোৱা নগ'ল\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ভাষা নিৰ্বাচন কৰক\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/az/messages.po b/apps/desktop/src/i18n/locales/az/messages.po index 845288f6d3..6f643e0a61 100644 --- a/apps/desktop/src/i18n/locales/az/messages.po +++ b/apps/desktop/src/i18n/locales/az/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/az/messages.ts b/apps/desktop/src/i18n/locales/az/messages.ts index eb37c1efda..2ebbf0f59d 100644 --- a/apps/desktop/src/i18n/locales/az/messages.ts +++ b/apps/desktop/src/i18n/locales/az/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Əsas dil\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dil əlavə edin\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Görüş başlayanda başlayın\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Danışıq dili əlavə edin\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Dil axtarın...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Dil və Region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"İstifadə datasını paylaşın\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Tətbiq\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Əlavə danışıq dilləri\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Giriş zamanı Analoqu başladın\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Bildirişlər\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Görüş bitəndə dayandırın\"],\"jzmguI\":[\"Görüşlər\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Uyğun dil tapılmadı\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Dil seçin\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Əsas dil\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dil əlavə edin\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Görüş başlayanda başlayın\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Danışıq dili əlavə edin\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Dil axtarın...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Dil və Region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"İstifadə datasını paylaşın\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Tətbiq\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Əlavə danışıq dilləri\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Giriş zamanı Analoqu başladın\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Bildirişlər\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Görüş bitəndə dayandırın\"],\"jzmguI\":[\"Görüşlər\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Uyğun dil tapılmadı\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Dil seçin\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ba/messages.po b/apps/desktop/src/i18n/locales/ba/messages.po index 7a9d7cbee0..6c59c7d237 100644 --- a/apps/desktop/src/i18n/locales/ba/messages.po +++ b/apps/desktop/src/i18n/locales/ba/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ba/messages.ts b/apps/desktop/src/i18n/locales/ba/messages.ts index 0c3f65981d..37c1132e04 100644 --- a/apps/desktop/src/i18n/locales/ba/messages.ts +++ b/apps/desktop/src/i18n/locales/ba/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Төп тел\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Тел өҫтәү\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Осрашыу башланғас башла\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Һөйләү телен өҫтәү\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Эҙләү теле...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Тел һәм төбәк\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Ҡулланыу мәғлүмәттәре менән уртаҡлашыу\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ҡушымта\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Өҫтәмә һөйләү телдәре\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Логин ваҡытында Анарлогты башлағыҙ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Хәбәр итеүҙәр\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Осрашыу тамамланғас туҡта\"],\"jzmguI\":[\"Осрашыуҙар\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Тап килгән телдәр табылмаған\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Телде һайлау\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Төп тел\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Тел өҫтәү\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Осрашыу башланғас башла\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Һөйләү телен өҫтәү\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Эҙләү теле...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Тел һәм төбәк\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Ҡулланыу мәғлүмәттәре менән уртаҡлашыу\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ҡушымта\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Өҫтәмә һөйләү телдәре\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Логин ваҡытында Анарлогты башлағыҙ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Хәбәр итеүҙәр\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Осрашыу тамамланғас туҡта\"],\"jzmguI\":[\"Осрашыуҙар\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Тап килгән телдәр табылмаған\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Телде һайлау\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/be/messages.po b/apps/desktop/src/i18n/locales/be/messages.po index 63699d862d..119d7faa34 100644 --- a/apps/desktop/src/i18n/locales/be/messages.po +++ b/apps/desktop/src/i18n/locales/be/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/be/messages.ts b/apps/desktop/src/i18n/locales/be/messages.ts index b17ccb6555..eb5539d5e1 100644 --- a/apps/desktop/src/i18n/locales/be/messages.ts +++ b/apps/desktop/src/i18n/locales/be/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Асноўная мова\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Дадаць мову\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Пачаць, калі пачынаецца сустрэча\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Дадаць гутарковую мову\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Мова пошуку...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Мова і рэгіён\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Абагульваць дадзеныя аб выкарыстанні\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Прыкладанне\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Дадатковыя размоўныя мовы\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Запусціць Anarlog пры ўваходзе ў сістэму\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Апавяшчэнні\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Спыніцца, калі сустрэча скончыцца\"],\"jzmguI\":[\"Сустрэчы\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Не знойдзена адпаведных моў\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Выбраць мову\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Асноўная мова\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Дадаць мову\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Пачаць, калі пачынаецца сустрэча\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Дадаць гутарковую мову\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Мова пошуку...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Мова і рэгіён\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Абагульваць дадзеныя аб выкарыстанні\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Прыкладанне\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Дадатковыя размоўныя мовы\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Запусціць Anarlog пры ўваходзе ў сістэму\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Апавяшчэнні\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Спыніцца, калі сустрэча скончыцца\"],\"jzmguI\":[\"Сустрэчы\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Не знойдзена адпаведных моў\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Выбраць мову\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/bg/messages.po b/apps/desktop/src/i18n/locales/bg/messages.po index 282a020ab8..e4c3c2044d 100644 --- a/apps/desktop/src/i18n/locales/bg/messages.po +++ b/apps/desktop/src/i18n/locales/bg/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/bg/messages.ts b/apps/desktop/src/i18n/locales/bg/messages.ts index 776f6cb95f..88ab09b5da 100644 --- a/apps/desktop/src/i18n/locales/bg/messages.ts +++ b/apps/desktop/src/i18n/locales/bg/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Основен език\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Добавяне на език\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Започнете, когато срещата започне\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Добавяне на говорим език\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Език за търсене...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Език и регион\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Споделяне на данни за използване\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Приложение\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Допълнителни говорими езици\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Стартирайте Anarlog при влизане\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Известия\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Спрете, когато срещата приключи\"],\"jzmguI\":[\"Срещи\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Няма намерени съответстващи езици\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Избор на език\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Основен език\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Добавяне на език\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Започнете, когато срещата започне\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Добавяне на говорим език\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Език за търсене...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Език и регион\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Споделяне на данни за използване\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Приложение\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Допълнителни говорими езици\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Стартирайте Anarlog при влизане\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Известия\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Спрете, когато срещата приключи\"],\"jzmguI\":[\"Срещи\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Няма намерени съответстващи езици\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Избор на език\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/bn/messages.po b/apps/desktop/src/i18n/locales/bn/messages.po index 0f3da76a3b..ccb9f0548d 100644 --- a/apps/desktop/src/i18n/locales/bn/messages.po +++ b/apps/desktop/src/i18n/locales/bn/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/bn/messages.ts b/apps/desktop/src/i18n/locales/bn/messages.ts index 5242c7405b..c58f02deac 100644 --- a/apps/desktop/src/i18n/locales/bn/messages.ts +++ b/apps/desktop/src/i18n/locales/bn/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"প্রধান ভাষা\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ভাষা যোগ করুন\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"মিটিং শুরু হলে শুরু করুন\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"কথ্য ভাষা যোগ করুন\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ভাষা খুঁজুন...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ভাষা ও অঞ্চল\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ব্যবহারের ডেটা শেয়ার করুন\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"অ্যাপ\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"অতিরিক্ত কথ্য ভাষা\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"লগইনে অ্যানারলগ শুরু করুন\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"বিজ্ঞপ্তি\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"মিটিং শেষ হলে থামুন\"],\"jzmguI\":[\"মিটিং\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"কোন মিলিত ভাষা পাওয়া যায়নি\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ভাষা নির্বাচন করুন\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"প্রধান ভাষা\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ভাষা যোগ করুন\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"মিটিং শুরু হলে শুরু করুন\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"কথ্য ভাষা যোগ করুন\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ভাষা খুঁজুন...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ভাষা ও অঞ্চল\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ব্যবহারের ডেটা শেয়ার করুন\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"অ্যাপ\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"অতিরিক্ত কথ্য ভাষা\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"লগইনে অ্যানারলগ শুরু করুন\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"বিজ্ঞপ্তি\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"মিটিং শেষ হলে থামুন\"],\"jzmguI\":[\"মিটিং\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"কোন মিলিত ভাষা পাওয়া যায়নি\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ভাষা নির্বাচন করুন\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/bo/messages.po b/apps/desktop/src/i18n/locales/bo/messages.po index 16149e6c95..8f7c415d9e 100644 --- a/apps/desktop/src/i18n/locales/bo/messages.po +++ b/apps/desktop/src/i18n/locales/bo/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/bo/messages.ts b/apps/desktop/src/i18n/locales/bo/messages.ts index b9c32d974c..fab4214488 100644 --- a/apps/desktop/src/i18n/locales/bo/messages.ts +++ b/apps/desktop/src/i18n/locales/bo/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"སྐད་ཡིག་གཙོ་བོ།\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"སྐད་ཡིག་ཁ་སྣོན\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ཚོགས་འདུ་འགོ་འཛུགས་སྐབས་འགོ་འཛུགས།\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"སྐད་ཆའི་སྐད་ཡིག་ཁ་སྣོན\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"འཚོལ་ཞིབ་སྐད་ཡིག...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"སྐད་ཡིག་དང་ས་ཁུལ།\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"བེད་སྤྱོད་ཀྱི་གཞི་གྲངས་མཉམ་སྤྱོད།\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"མཉེན་ཆས།\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ཁ་སྣོན་གྱི་སྐད་ཆ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ནང་འཇུག་བྱེད་སྐབས་ཨ་ནར་ལོག་འགོ་འཛུགས།\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"བརྡ་ཐོ\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ཚོགས་འདུ་གྲོལ་རྗེས་མཚམས་འཇོག་དགོས།\"],\"jzmguI\":[\"ཚོགས་འདུ།\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"མཐུན་པའི་སྐད་ཡིག་མ་རྙེད།\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"སྐད་ཡིག་འདེམས།\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"སྐད་ཡིག་གཙོ་བོ།\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"སྐད་ཡིག་ཁ་སྣོན\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ཚོགས་འདུ་འགོ་འཛུགས་སྐབས་འགོ་འཛུགས།\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"སྐད་ཆའི་སྐད་ཡིག་ཁ་སྣོན\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"འཚོལ་ཞིབ་སྐད་ཡིག...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"སྐད་ཡིག་དང་ས་ཁུལ།\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"བེད་སྤྱོད་ཀྱི་གཞི་གྲངས་མཉམ་སྤྱོད།\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"མཉེན་ཆས།\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ཁ་སྣོན་གྱི་སྐད་ཆ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ནང་འཇུག་བྱེད་སྐབས་ཨ་ནར་ལོག་འགོ་འཛུགས།\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"བརྡ་ཐོ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ཚོགས་འདུ་གྲོལ་རྗེས་མཚམས་འཇོག་དགོས།\"],\"jzmguI\":[\"ཚོགས་འདུ།\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"མཐུན་པའི་སྐད་ཡིག་མ་རྙེད།\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"སྐད་ཡིག་འདེམས།\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/br/messages.po b/apps/desktop/src/i18n/locales/br/messages.po index 2db88184e3..eba6d1e3d5 100644 --- a/apps/desktop/src/i18n/locales/br/messages.po +++ b/apps/desktop/src/i18n/locales/br/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/br/messages.ts b/apps/desktop/src/i18n/locales/br/messages.ts index b30a114c72..4bff977865 100644 --- a/apps/desktop/src/i18n/locales/br/messages.ts +++ b/apps/desktop/src/i18n/locales/br/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Yezh pennañ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ouzhpennañ ur yezh\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Kregiñ pa grogo an emvod\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ouzhpennañ ar yezh komzet\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Klask yezh...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Yezh & Rannvro\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Rannañ roadennoù implij\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Arload\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Yezhoù komzet ouzhpenn\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Kregiñ gant an Anarlog pa vez kevreet\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Kemennadennoù\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Paouez pa vo echu an emvod\"],\"jzmguI\":[\"Emvodoù\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"N'eus bet kavet yezh ebet a glot\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Dibab yezh\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Yezh pennañ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ouzhpennañ ur yezh\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Kregiñ pa grogo an emvod\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ouzhpennañ ar yezh komzet\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Klask yezh...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Yezh & Rannvro\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Rannañ roadennoù implij\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Arload\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Yezhoù komzet ouzhpenn\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Kregiñ gant an Anarlog pa vez kevreet\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Kemennadennoù\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Paouez pa vo echu an emvod\"],\"jzmguI\":[\"Emvodoù\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"N'eus bet kavet yezh ebet a glot\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Dibab yezh\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/bs/messages.po b/apps/desktop/src/i18n/locales/bs/messages.po index 64bc2f7958..fe5b340418 100644 --- a/apps/desktop/src/i18n/locales/bs/messages.po +++ b/apps/desktop/src/i18n/locales/bs/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/bs/messages.ts b/apps/desktop/src/i18n/locales/bs/messages.ts index 8ad893e226..714243fb6c 100644 --- a/apps/desktop/src/i18n/locales/bs/messages.ts +++ b/apps/desktop/src/i18n/locales/bs/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Glavni jezik\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dodaj jezik\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Započni kada sastanak počne\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Dodaj govorni jezik\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Pretraži jezik...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Jezik i regija\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Dijelite podatke o korištenju\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikacija\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Dodatni govorni jezici\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Pokreni Anarlog pri prijavi\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Obaveštenja\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Zaustavi kada sastanak završi\"],\"jzmguI\":[\"Sastanci\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nije pronađen nijedan odgovarajući jezik\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Odaberite jezik\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Glavni jezik\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dodaj jezik\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Započni kada sastanak počne\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Dodaj govorni jezik\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Pretraži jezik...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Jezik i regija\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Dijelite podatke o korištenju\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikacija\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Dodatni govorni jezici\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Pokreni Anarlog pri prijavi\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Obaveštenja\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Zaustavi kada sastanak završi\"],\"jzmguI\":[\"Sastanci\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nije pronađen nijedan odgovarajući jezik\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Odaberite jezik\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ca/messages.po b/apps/desktop/src/i18n/locales/ca/messages.po index 7e72e072d4..65e9a879d4 100644 --- a/apps/desktop/src/i18n/locales/ca/messages.po +++ b/apps/desktop/src/i18n/locales/ca/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ca/messages.ts b/apps/desktop/src/i18n/locales/ca/messages.ts index c2f28f9824..799d5a3805 100644 --- a/apps/desktop/src/i18n/locales/ca/messages.ts +++ b/apps/desktop/src/i18n/locales/ca/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Idioma principal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Afegeix un idioma\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Comenceu quan comenci la reunió\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Afegeix un idioma parlat\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Cerca l'idioma...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Idioma i regió\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Comparteix les dades d'ús\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplicació\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Idiomes parlats addicionals\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Inicieu Anarlog en iniciar sessió\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificacions\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Atura't quan acabi la reunió\"],\"jzmguI\":[\"Reunions\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"No s'han trobat idiomes coincidents\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Seleccioneu l'idioma\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Idioma principal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Afegeix un idioma\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Comenceu quan comenci la reunió\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Afegeix un idioma parlat\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Cerca l'idioma...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Idioma i regió\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Comparteix les dades d'ús\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplicació\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Idiomes parlats addicionals\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Inicieu Anarlog en iniciar sessió\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificacions\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Atura't quan acabi la reunió\"],\"jzmguI\":[\"Reunions\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"No s'han trobat idiomes coincidents\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Seleccioneu l'idioma\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/cs/messages.po b/apps/desktop/src/i18n/locales/cs/messages.po index 123228d09b..cb6eb8f1d5 100644 --- a/apps/desktop/src/i18n/locales/cs/messages.po +++ b/apps/desktop/src/i18n/locales/cs/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/cs/messages.ts b/apps/desktop/src/i18n/locales/cs/messages.ts index b903af418e..4b5178a668 100644 --- a/apps/desktop/src/i18n/locales/cs/messages.ts +++ b/apps/desktop/src/i18n/locales/cs/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hlavní jazyk\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Přidat jazyk\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Začít při zahájení schůzky\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Přidat mluvený jazyk\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Jazyk vyhledávání...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Jazyk a oblast\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Sdílet údaje o využití\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikace\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Další mluvené jazyky\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Spustit Anarlog při přihlášení\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Oznámení\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Zastavit, když schůzka skončí\"],\"jzmguI\":[\"Schůzky\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nebyly nalezeny žádné odpovídající jazyky\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Vyberte jazyk\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hlavní jazyk\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Přidat jazyk\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Začít při zahájení schůzky\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Přidat mluvený jazyk\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Jazyk vyhledávání...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Jazyk a oblast\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Sdílet údaje o využití\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikace\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Další mluvené jazyky\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Spustit Anarlog při přihlášení\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Oznámení\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Zastavit, když schůzka skončí\"],\"jzmguI\":[\"Schůzky\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nebyly nalezeny žádné odpovídající jazyky\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Vyberte jazyk\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/cy/messages.po b/apps/desktop/src/i18n/locales/cy/messages.po index 2d2534b56a..d9c0929f41 100644 --- a/apps/desktop/src/i18n/locales/cy/messages.po +++ b/apps/desktop/src/i18n/locales/cy/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/cy/messages.ts b/apps/desktop/src/i18n/locales/cy/messages.ts index 0360a83528..d6f57ea841 100644 --- a/apps/desktop/src/i18n/locales/cy/messages.ts +++ b/apps/desktop/src/i18n/locales/cy/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Prif iaith\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ychwanegu iaith\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Dechrau pan fydd y cyfarfod yn dechrau\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ychwanegu iaith lafar\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Iaith chwilio...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Iaith a Rhanbarth\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Rhannu data defnydd\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ap\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ieithoedd llafar ychwanegol\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Dechrau Anarlog wrth fewngofnodi\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Hysbysiadau\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stopiwch pan ddaw'r cyfarfod i ben\"],\"jzmguI\":[\"Cyfarfodydd\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ni chanfuwyd ieithoedd sy'n cyfateb\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Dewiswch iaith\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Prif iaith\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ychwanegu iaith\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Dechrau pan fydd y cyfarfod yn dechrau\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ychwanegu iaith lafar\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Iaith chwilio...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Iaith a Rhanbarth\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Rhannu data defnydd\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ap\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ieithoedd llafar ychwanegol\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Dechrau Anarlog wrth fewngofnodi\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Hysbysiadau\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stopiwch pan ddaw'r cyfarfod i ben\"],\"jzmguI\":[\"Cyfarfodydd\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ni chanfuwyd ieithoedd sy'n cyfateb\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Dewiswch iaith\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/da/messages.po b/apps/desktop/src/i18n/locales/da/messages.po index aa199826f8..e44324ea85 100644 --- a/apps/desktop/src/i18n/locales/da/messages.po +++ b/apps/desktop/src/i18n/locales/da/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/da/messages.ts b/apps/desktop/src/i18n/locales/da/messages.ts index 1558bc539f..459bb858d7 100644 --- a/apps/desktop/src/i18n/locales/da/messages.ts +++ b/apps/desktop/src/i18n/locales/da/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hovedsprog\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tilføj sprog\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start, når mødet begynder\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Tilføj talesprog\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Søgesprog...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Sprog og region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Del brugsdata\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Yderligere talte sprog\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Start Anarlog ved login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Underretninger\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stop, når mødet slutter\"],\"jzmguI\":[\"Møder\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Der blev ikke fundet nogen matchende sprog\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Vælg sprog\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hovedsprog\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tilføj sprog\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start, når mødet begynder\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Tilføj talesprog\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Søgesprog...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Sprog og region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Del brugsdata\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Yderligere talte sprog\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Start Anarlog ved login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Underretninger\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stop, når mødet slutter\"],\"jzmguI\":[\"Møder\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Der blev ikke fundet nogen matchende sprog\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Vælg sprog\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/de/messages.po b/apps/desktop/src/i18n/locales/de/messages.po index 1c554e2128..2f0493c34b 100644 --- a/apps/desktop/src/i18n/locales/de/messages.po +++ b/apps/desktop/src/i18n/locales/de/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/de/messages.ts b/apps/desktop/src/i18n/locales/de/messages.ts index 637b598869..f939fcfa5f 100644 --- a/apps/desktop/src/i18n/locales/de/messages.ts +++ b/apps/desktop/src/i18n/locales/de/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hauptsprache\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Sprache hinzufügen\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Beim Beginn des Meetings starten\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Gesprochene Sprache hinzufügen\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Sprache suchen...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Sprache & Region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Nutzungsdaten teilen\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Weitere gesprochene Sprachen\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Anarlog beim Anmelden starten\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Benachrichtigungen\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stoppen, wenn das Meeting endet\"],\"jzmguI\":[\"Treffen\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Keine passenden Sprachen gefunden\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Sprache auswählen\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hauptsprache\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Sprache hinzufügen\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Beim Beginn des Meetings starten\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Gesprochene Sprache hinzufügen\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Sprache suchen...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Sprache & Region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Nutzungsdaten teilen\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Weitere gesprochene Sprachen\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Anarlog beim Anmelden starten\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Benachrichtigungen\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stoppen, wenn das Meeting endet\"],\"jzmguI\":[\"Treffen\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Keine passenden Sprachen gefunden\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Sprache auswählen\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/el/messages.po b/apps/desktop/src/i18n/locales/el/messages.po index 77d48b6f5f..0f5d7f1ad1 100644 --- a/apps/desktop/src/i18n/locales/el/messages.po +++ b/apps/desktop/src/i18n/locales/el/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/el/messages.ts b/apps/desktop/src/i18n/locales/el/messages.ts index c601180561..b23f8a7844 100644 --- a/apps/desktop/src/i18n/locales/el/messages.ts +++ b/apps/desktop/src/i18n/locales/el/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Κύρια γλώσσα\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Προσθήκη γλώσσας\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Ξεκινήστε όταν ξεκινά η σύσκεψη\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Προσθήκη προφορικής γλώσσας\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Αναζήτηση γλώσσας...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Γλώσσα και περιοχή\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Κοινή χρήση δεδομένων χρήσης\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Εφαρμογή\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Πρόσθετες ομιλούμενες γλώσσες\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Ξεκινήστε το Anarlog κατά τη σύνδεση\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Ειδοποιήσεις\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Διακοπή όταν τελειώσει η σύσκεψη\"],\"jzmguI\":[\"Συναντήσεις\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Δεν βρέθηκαν γλώσσες που να ταιριάζουν\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Επιλογή γλώσσας\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Κύρια γλώσσα\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Προσθήκη γλώσσας\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Ξεκινήστε όταν ξεκινά η σύσκεψη\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Προσθήκη προφορικής γλώσσας\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Αναζήτηση γλώσσας...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Γλώσσα και περιοχή\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Κοινή χρήση δεδομένων χρήσης\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Εφαρμογή\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Πρόσθετες ομιλούμενες γλώσσες\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Ξεκινήστε το Anarlog κατά τη σύνδεση\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Ειδοποιήσεις\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Διακοπή όταν τελειώσει η σύσκεψη\"],\"jzmguI\":[\"Συναντήσεις\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Δεν βρέθηκαν γλώσσες που να ταιριάζουν\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Επιλογή γλώσσας\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/en/messages.po b/apps/desktop/src/i18n/locales/en/messages.po index c68905a993..2beb390177 100644 --- a/apps/desktop/src/i18n/locales/en/messages.po +++ b/apps/desktop/src/i18n/locales/en/messages.po @@ -313,6 +313,14 @@ msgstr "All Notes" msgid "All providers are connected." msgstr "All providers are connected." +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "Allow anyone-with-the-link sharing" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "Allow public indexing" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "An unexpected error occurred." @@ -676,6 +684,10 @@ msgstr "Calendar" msgid "Calendar connected" msgstr "Calendar connected" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "Calendar-scheduled capture jobs. Canceling stops the bot from joining." + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "Can comment" @@ -704,6 +716,10 @@ msgstr "Can view" msgid "Cancel" msgstr "Cancel" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "Cancel bot" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "Cancel date edit" @@ -884,6 +900,10 @@ msgstr "Choose the microphone that captures your voice." msgid "Choose which day begins your calendar week." msgstr "Choose which day begins your calendar week." +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "Claim email domain" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "Clean Up" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "Device limit reached" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "Devices" @@ -2240,6 +2261,10 @@ msgstr "Join scheduled meetings" msgid "Keep desktop edits" msgstr "Keep desktop edits" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "Keep forever" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "Keep notes current automatically." @@ -2382,6 +2407,10 @@ msgstr "Loading devices" msgid "Loading models..." msgstr "Loading models..." +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "Loading scheduled captures…" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "Member" msgid "members" msgstr "members" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "Members" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "Memo" @@ -2827,6 +2860,10 @@ msgstr "No templates yet" msgid "No transcript available" msgstr "No transcript available" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "No upcoming bots." + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "Not installed" @@ -3126,6 +3163,10 @@ msgstr "Plans" msgid "Play from here" msgstr "Play from here" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "Policies" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "Post a meeting recap to a Slack channel." @@ -3426,6 +3467,10 @@ msgstr "Request {0} permission" msgid "Requested {0}" msgstr "Requested {0}" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "Require SSO" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "Require Touch ID or your password when opening Anarlog." @@ -3492,6 +3537,10 @@ msgstr "Resume listening" msgid "Resume sync" msgstr "Resume sync" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "Retention (days)" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "Save date" msgid "Save draft" msgstr "Save draft" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "Save policies" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "Save SCIM token" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." @@ -3547,6 +3604,10 @@ msgstr "Save visible chat from supported meetings using Accessibility." msgid "Saved locally" msgstr "Saved locally" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "SCIM bearer token" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "Scroll to bottom" @@ -3630,6 +3691,10 @@ msgstr "Search timezone..." msgid "Search..." msgstr "Search..." +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "Seats" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "Section actions" @@ -3852,6 +3917,10 @@ msgstr "Shared with me · Can edit" msgid "Shared with me · View only" msgstr "Shared with me · View only" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "Shares (30d)" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "Sharing paused to protect your edits" @@ -4421,6 +4490,10 @@ msgstr "The update download failed" msgid "Theme" msgstr "Theme" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "These rules apply to every member. Sharing changes fail closed on the server." + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "Thinking..." @@ -4646,6 +4719,10 @@ msgstr "Untitled automation" msgid "Untitled Note" msgstr "Untitled Note" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "Upcoming bot attendance" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "Upcoming Event" @@ -4749,6 +4826,10 @@ msgstr "Upload Transcript" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "Uploads meeting content for remote access while Anarlog is closed." +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "Usage" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "Use a stable filename in the configured export directory." @@ -4793,6 +4874,10 @@ msgstr "Use Windows Hello face, PIN, or password to view." msgid "Use your microphone to capture your voice" msgstr "Use your microphone to capture your voice" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "Verify domain" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "Verifying the SQLite migration status" @@ -4886,6 +4971,10 @@ msgstr "Work on this task" msgid "Workspace" msgstr "Workspace" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "Workspace activity from metadata only. Note content stays unreadable on the server." + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "Workspace name" diff --git a/apps/desktop/src/i18n/locales/en/messages.ts b/apps/desktop/src/i18n/locales/en/messages.ts index 7cced30a3e..1e9a027019 100644 --- a/apps/desktop/src/i18n/locales/en/messages.ts +++ b/apps/desktop/src/i18n/locales/en/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Main language\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Add language\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start when meeting begins\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Add spoken language\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Search language...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Language & Region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Share usage data\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Additional spoken languages\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Start Anarlog at login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stop when meeting ends\"],\"jzmguI\":[\"Meetings\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"No matching languages found\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Select language\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Main language\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Add language\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start when meeting begins\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Add spoken language\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Search language...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Language & Region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Share usage data\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Additional spoken languages\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Start Anarlog at login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stop when meeting ends\"],\"jzmguI\":[\"Meetings\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"No matching languages found\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Select language\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/es/messages.po b/apps/desktop/src/i18n/locales/es/messages.po index 342bf89dd7..1b3897ee44 100644 --- a/apps/desktop/src/i18n/locales/es/messages.po +++ b/apps/desktop/src/i18n/locales/es/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/es/messages.ts b/apps/desktop/src/i18n/locales/es/messages.ts index f2846d4416..d37283f671 100644 --- a/apps/desktop/src/i18n/locales/es/messages.ts +++ b/apps/desktop/src/i18n/locales/es/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Idioma principal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Añadir idioma\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Iniciar cuando comience la reunión\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Añadir idioma hablado\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Buscar idioma...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Idioma y región\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Compartir datos de uso\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplicación\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Idiomas hablados adicionales\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Iniciar Anarlog al iniciar sesión\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificaciones\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Detener cuando termine la reunión\"],\"jzmguI\":[\"Reuniones\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"No se encontraron idiomas coincidentes\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Seleccionar idioma\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Idioma principal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Añadir idioma\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Iniciar cuando comience la reunión\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Añadir idioma hablado\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Buscar idioma...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Idioma y región\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Compartir datos de uso\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplicación\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Idiomas hablados adicionales\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Iniciar Anarlog al iniciar sesión\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificaciones\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Detener cuando termine la reunión\"],\"jzmguI\":[\"Reuniones\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"No se encontraron idiomas coincidentes\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Seleccionar idioma\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/et/messages.po b/apps/desktop/src/i18n/locales/et/messages.po index 01470bd9fb..ceafa39aea 100644 --- a/apps/desktop/src/i18n/locales/et/messages.po +++ b/apps/desktop/src/i18n/locales/et/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/et/messages.ts b/apps/desktop/src/i18n/locales/et/messages.ts index f028eb71ae..941e368616 100644 --- a/apps/desktop/src/i18n/locales/et/messages.ts +++ b/apps/desktop/src/i18n/locales/et/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Põhikeel\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Lisage keel\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Alusta koosoleku alguses\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Lisage kõnekeel\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Otsingukeel...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Keel ja piirkond\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kasutusandmete jagamine\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Rakendus\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Täiendavad kõnekeeled\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Käivitage sisselogimisel Anarlog\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Märguanded\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Peatage koosoleku lõppedes\"],\"jzmguI\":[\"Koosolekud\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Sobivaid keeli ei leitud\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Valige keel\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Põhikeel\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Lisage keel\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Alusta koosoleku alguses\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Lisage kõnekeel\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Otsingukeel...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Keel ja piirkond\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kasutusandmete jagamine\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Rakendus\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Täiendavad kõnekeeled\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Käivitage sisselogimisel Anarlog\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Märguanded\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Peatage koosoleku lõppedes\"],\"jzmguI\":[\"Koosolekud\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Sobivaid keeli ei leitud\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Valige keel\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/eu/messages.po b/apps/desktop/src/i18n/locales/eu/messages.po index ff60855bd7..706f387949 100644 --- a/apps/desktop/src/i18n/locales/eu/messages.po +++ b/apps/desktop/src/i18n/locales/eu/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/eu/messages.ts b/apps/desktop/src/i18n/locales/eu/messages.ts index 70a0484ead..21f475ebe5 100644 --- a/apps/desktop/src/i18n/locales/eu/messages.ts +++ b/apps/desktop/src/i18n/locales/eu/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hizkuntza nagusia\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Gehitu hizkuntza\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Hasi bilera hasten denean\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Gehitu ahozko hizkuntza\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Bilatu hizkuntza...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Hizkuntza eta eskualdea\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Partekatu erabilera datuak\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikazioa\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ahozko hizkuntza gehigarriak\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Hasi Anarlog saioa hasten denean\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Jakinarazpenak\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Gelditu bilera amaitzen denean\"],\"jzmguI\":[\"Bilkurak\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ez da bat datorren hizkuntzarik aurkitu\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Hautatu hizkuntza\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hizkuntza nagusia\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Gehitu hizkuntza\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Hasi bilera hasten denean\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Gehitu ahozko hizkuntza\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Bilatu hizkuntza...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Hizkuntza eta eskualdea\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Partekatu erabilera datuak\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikazioa\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ahozko hizkuntza gehigarriak\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Hasi Anarlog saioa hasten denean\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Jakinarazpenak\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Gelditu bilera amaitzen denean\"],\"jzmguI\":[\"Bilkurak\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ez da bat datorren hizkuntzarik aurkitu\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Hautatu hizkuntza\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/fa/messages.po b/apps/desktop/src/i18n/locales/fa/messages.po index 84ba1a20d2..a3d1ab71ca 100644 --- a/apps/desktop/src/i18n/locales/fa/messages.po +++ b/apps/desktop/src/i18n/locales/fa/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/fa/messages.ts b/apps/desktop/src/i18n/locales/fa/messages.ts index 5e8b1338bc..533b8bb986 100644 --- a/apps/desktop/src/i18n/locales/fa/messages.ts +++ b/apps/desktop/src/i18n/locales/fa/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"زبان اصلی\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"افزودن زبان\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"با شروع جلسه شروع شود\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"افزودن زبان گفتاری\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"زبان جستجو...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"زبان و منطقه\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"به اشتراک گذاری داده های استفاده\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"برنامه\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"زبان‌های گفتاری دیگر\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Anarlog را با ورود شروع کنید\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"اعلان‌ها\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"وقتی جلسه تمام شد متوقف شود\"],\"jzmguI\":[\"جلسات\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"هیچ زبان منطبقی یافت نشد\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"زبان را انتخاب کنید\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"زبان اصلی\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"افزودن زبان\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"با شروع جلسه شروع شود\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"افزودن زبان گفتاری\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"زبان جستجو...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"زبان و منطقه\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"به اشتراک گذاری داده های استفاده\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"برنامه\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"زبان‌های گفتاری دیگر\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Anarlog را با ورود شروع کنید\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"اعلان‌ها\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"وقتی جلسه تمام شد متوقف شود\"],\"jzmguI\":[\"جلسات\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"هیچ زبان منطبقی یافت نشد\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"زبان را انتخاب کنید\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ff/messages.po b/apps/desktop/src/i18n/locales/ff/messages.po index 9c353c44a3..c361f510ae 100644 --- a/apps/desktop/src/i18n/locales/ff/messages.po +++ b/apps/desktop/src/i18n/locales/ff/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ff/messages.ts b/apps/desktop/src/i18n/locales/ff/messages.ts index c583a9bd05..f0a748d8c3 100644 --- a/apps/desktop/src/i18n/locales/ff/messages.ts +++ b/apps/desktop/src/i18n/locales/ff/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ɗemngal mawngal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ɓeydu ɗemngal\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Fuɗɗo so batu fuɗɗiima\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ɓeydu ɗemngal haalteengal\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Ɗemngal njiylawu...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Ɗemngal e Diiwaan\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Renndinde dokke kuutoragol\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Kuutorgal\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ɗemɗe kaaleteeɗe ɓeydaaɗe\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Fuɗɗo Anarlog e naatgol\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Noddaango\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Darto so batu nguu gasii\"],\"jzmguI\":[\"Kawrital\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ɗemɗe nannduɗe alaa tawaa\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Suɓo ɗemngal\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ɗemngal mawngal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ɓeydu ɗemngal\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Fuɗɗo so batu fuɗɗiima\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ɓeydu ɗemngal haalteengal\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Ɗemngal njiylawu...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Ɗemngal e Diiwaan\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Renndinde dokke kuutoragol\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Kuutorgal\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ɗemɗe kaaleteeɗe ɓeydaaɗe\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Fuɗɗo Anarlog e naatgol\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Noddaango\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Darto so batu nguu gasii\"],\"jzmguI\":[\"Kawrital\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ɗemɗe nannduɗe alaa tawaa\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Suɓo ɗemngal\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/fi/messages.po b/apps/desktop/src/i18n/locales/fi/messages.po index 8a12cd4f0b..cd7726335b 100644 --- a/apps/desktop/src/i18n/locales/fi/messages.po +++ b/apps/desktop/src/i18n/locales/fi/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/fi/messages.ts b/apps/desktop/src/i18n/locales/fi/messages.ts index 2f6f7aea7b..4aa24a8573 100644 --- a/apps/desktop/src/i18n/locales/fi/messages.ts +++ b/apps/desktop/src/i18n/locales/fi/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Pääkieli\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Lisää kieli\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Aloita kokouksen alkaessa\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Lisää puhuttu kieli\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Hakukieli...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Kieli ja alue\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Jaa käyttötiedot\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Sovellus\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Muita puhuttuja kieliä\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Käynnistä Anarlog sisäänkirjautumisen yhteydessä\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Ilmoitukset\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Lopeta, kun kokous päättyy\"],\"jzmguI\":[\"Kokoukset\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Vastaavia kieliä ei löytynyt\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Valitse kieli\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Pääkieli\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Lisää kieli\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Aloita kokouksen alkaessa\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Lisää puhuttu kieli\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Hakukieli...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Kieli ja alue\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Jaa käyttötiedot\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Sovellus\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Muita puhuttuja kieliä\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Käynnistä Anarlog sisäänkirjautumisen yhteydessä\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Ilmoitukset\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Lopeta, kun kokous päättyy\"],\"jzmguI\":[\"Kokoukset\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Vastaavia kieliä ei löytynyt\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Valitse kieli\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/fo/messages.po b/apps/desktop/src/i18n/locales/fo/messages.po index 4ce1ce85e4..792c2bf00d 100644 --- a/apps/desktop/src/i18n/locales/fo/messages.po +++ b/apps/desktop/src/i18n/locales/fo/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/fo/messages.ts b/apps/desktop/src/i18n/locales/fo/messages.ts index 7e77d0c363..82bbfb49b7 100644 --- a/apps/desktop/src/i18n/locales/fo/messages.ts +++ b/apps/desktop/src/i18n/locales/fo/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Høvuðsmál\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Legg mál til\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Byrja tá møtið byrjar\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Legg talumál til\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Leitimál...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Mál og øki\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Deil nýtsludátur\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Forrit\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Eyka talumál\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Byrja Anarlog við innritan\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Fráboðanir\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Steðga á, tá ið fundurin endar\"],\"jzmguI\":[\"Fundir\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Einki samsvarandi mál er funnið\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Vel mál\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Høvuðsmál\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Legg mál til\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Byrja tá møtið byrjar\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Legg talumál til\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Leitimál...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Mál og øki\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Deil nýtsludátur\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Forrit\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Eyka talumál\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Byrja Anarlog við innritan\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Fráboðanir\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Steðga á, tá ið fundurin endar\"],\"jzmguI\":[\"Fundir\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Einki samsvarandi mál er funnið\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Vel mál\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/fr/messages.po b/apps/desktop/src/i18n/locales/fr/messages.po index 8ac7004e7b..a4efb266f5 100644 --- a/apps/desktop/src/i18n/locales/fr/messages.po +++ b/apps/desktop/src/i18n/locales/fr/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/fr/messages.ts b/apps/desktop/src/i18n/locales/fr/messages.ts index 327f168897..711a7a532b 100644 --- a/apps/desktop/src/i18n/locales/fr/messages.ts +++ b/apps/desktop/src/i18n/locales/fr/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Langue principale\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ajouter une langue\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Démarrer au début de la réunion\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ajouter une langue parlée\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Rechercher une langue...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Langue et région\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Partager les données d'utilisation\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Application\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Langues parlées supplémentaires\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Lancer Anarlog à la connexion\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Arrêter à la fin de la réunion\"],\"jzmguI\":[\"Réunions\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Aucune langue correspondante trouvée\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Sélectionner une langue\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Langue principale\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ajouter une langue\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Démarrer au début de la réunion\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ajouter une langue parlée\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Rechercher une langue...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Langue et région\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Partager les données d'utilisation\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Application\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Langues parlées supplémentaires\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Lancer Anarlog à la connexion\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Arrêter à la fin de la réunion\"],\"jzmguI\":[\"Réunions\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Aucune langue correspondante trouvée\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Sélectionner une langue\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ga/messages.po b/apps/desktop/src/i18n/locales/ga/messages.po index 2ab549f9d9..b0b2cdbe93 100644 --- a/apps/desktop/src/i18n/locales/ga/messages.po +++ b/apps/desktop/src/i18n/locales/ga/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ga/messages.ts b/apps/desktop/src/i18n/locales/ga/messages.ts index 4f9a46b1d3..22e5dc4a56 100644 --- a/apps/desktop/src/i18n/locales/ga/messages.ts +++ b/apps/desktop/src/i18n/locales/ga/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Príomhtheanga\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Cuir teanga leis\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Tosaigh nuair a thosaíonn an cruinniú\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Cuir teanga labhartha leis\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Teanga chuardaigh...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Teanga & Réigiún\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Comhroinn sonraí úsáide\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aip\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Teangacha breise labhartha\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Tosaigh Anarlog ag logáil isteach\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Fógraí\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stop nuair a thagann deireadh leis an gcruinniú\"],\"jzmguI\":[\"Cruinnithe\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Níor aimsíodh aon teanga chomhoiriúnach\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Roghnaigh teanga\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Príomhtheanga\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Cuir teanga leis\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Tosaigh nuair a thosaíonn an cruinniú\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Cuir teanga labhartha leis\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Teanga chuardaigh...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Teanga & Réigiún\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Comhroinn sonraí úsáide\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aip\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Teangacha breise labhartha\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Tosaigh Anarlog ag logáil isteach\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Fógraí\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stop nuair a thagann deireadh leis an gcruinniú\"],\"jzmguI\":[\"Cruinnithe\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Níor aimsíodh aon teanga chomhoiriúnach\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Roghnaigh teanga\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/gl/messages.po b/apps/desktop/src/i18n/locales/gl/messages.po index 045e822b25..b8572d179d 100644 --- a/apps/desktop/src/i18n/locales/gl/messages.po +++ b/apps/desktop/src/i18n/locales/gl/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/gl/messages.ts b/apps/desktop/src/i18n/locales/gl/messages.ts index 5c42f5789c..1c97170d50 100644 --- a/apps/desktop/src/i18n/locales/gl/messages.ts +++ b/apps/desktop/src/i18n/locales/gl/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Idioma principal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Engadir idioma\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Comezar cando comece a reunión\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Engadir idioma falado\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Buscar idioma...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Idioma e rexión\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Compartir datos de uso\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplicación\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Idiomas falados adicionais\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Iniciar Anarlog ao iniciar sesión\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificacións\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Para cando remate a reunión\"],\"jzmguI\":[\"Reunións\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Non se atoparon idiomas coincidentes\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Seleccionar idioma\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Idioma principal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Engadir idioma\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Comezar cando comece a reunión\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Engadir idioma falado\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Buscar idioma...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Idioma e rexión\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Compartir datos de uso\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplicación\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Idiomas falados adicionais\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Iniciar Anarlog ao iniciar sesión\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificacións\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Para cando remate a reunión\"],\"jzmguI\":[\"Reunións\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Non se atoparon idiomas coincidentes\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Seleccionar idioma\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/gu/messages.po b/apps/desktop/src/i18n/locales/gu/messages.po index 555facb6c7..041fb060dc 100644 --- a/apps/desktop/src/i18n/locales/gu/messages.po +++ b/apps/desktop/src/i18n/locales/gu/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/gu/messages.ts b/apps/desktop/src/i18n/locales/gu/messages.ts index 3938ffaaa3..26912ec867 100644 --- a/apps/desktop/src/i18n/locales/gu/messages.ts +++ b/apps/desktop/src/i18n/locales/gu/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"મુખ્ય ભાષા\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ભાષા ઉમેરો\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"મીટિંગ શરૂ થાય ત્યારે શરૂ કરો\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"બોલાતી ભાષા ઉમેરો\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ભાષા શોધો...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ભાષા અને પ્રદેશ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"વપરાશનો ડેટા શેર કરો\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"એપ\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"અતિરિક્ત બોલાતી ભાષાઓ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"લોગિન પર એનાલોગ શરૂ કરો\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"સૂચના\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"મીટિંગ સમાપ્ત થાય ત્યારે રોકો\"],\"jzmguI\":[\"મીટિંગ્સ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"કોઈ મેળ ખાતી ભાષાઓ મળી નથી\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ભાષા પસંદ કરો\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"મુખ્ય ભાષા\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ભાષા ઉમેરો\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"મીટિંગ શરૂ થાય ત્યારે શરૂ કરો\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"બોલાતી ભાષા ઉમેરો\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ભાષા શોધો...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ભાષા અને પ્રદેશ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"વપરાશનો ડેટા શેર કરો\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"એપ\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"અતિરિક્ત બોલાતી ભાષાઓ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"લોગિન પર એનાલોગ શરૂ કરો\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"સૂચના\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"મીટિંગ સમાપ્ત થાય ત્યારે રોકો\"],\"jzmguI\":[\"મીટિંગ્સ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"કોઈ મેળ ખાતી ભાષાઓ મળી નથી\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ભાષા પસંદ કરો\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ha/messages.po b/apps/desktop/src/i18n/locales/ha/messages.po index ec11e5579f..b2464554f5 100644 --- a/apps/desktop/src/i18n/locales/ha/messages.po +++ b/apps/desktop/src/i18n/locales/ha/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ha/messages.ts b/apps/desktop/src/i18n/locales/ha/messages.ts index d093800f18..b54d70527e 100644 --- a/apps/desktop/src/i18n/locales/ha/messages.ts +++ b/apps/desktop/src/i18n/locales/ha/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Babban harshe\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ƙara harshe\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Fara lokacin da aka fara taro\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ƙara yaren magana\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Yaren bincike...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Harshe & Yanki\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Raba bayanan amfani\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ƙarin harsunan magana\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Fara Anarlog a login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Sanarwa\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Dakata lokacin da taro ya ƙare\"],\"jzmguI\":[\"Taro\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ba a sami yarukan da suka dace ba\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Zaɓi harshe\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Babban harshe\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ƙara harshe\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Fara lokacin da aka fara taro\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ƙara yaren magana\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Yaren bincike...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Harshe & Yanki\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Raba bayanan amfani\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ƙarin harsunan magana\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Fara Anarlog a login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Sanarwa\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Dakata lokacin da taro ya ƙare\"],\"jzmguI\":[\"Taro\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ba a sami yarukan da suka dace ba\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Zaɓi harshe\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/he/messages.po b/apps/desktop/src/i18n/locales/he/messages.po index 4d37246491..15667dba76 100644 --- a/apps/desktop/src/i18n/locales/he/messages.po +++ b/apps/desktop/src/i18n/locales/he/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/he/messages.ts b/apps/desktop/src/i18n/locales/he/messages.ts index 67de9543fc..a0b74cb1d4 100644 --- a/apps/desktop/src/i18n/locales/he/messages.ts +++ b/apps/desktop/src/i18n/locales/he/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"שפה ראשית\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"הוסף שפה\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"התחל כאשר הפגישה מתחילה\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"הוסף שפה מדוברת\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"שפת חיפוש...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"שפה ואזור\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"שתף נתוני שימוש\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"אפליקציה\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"שפות מדוברות נוספות\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"התחל אנלוג בכניסה\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"התראות\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"עצור כאשר הפגישה מסתיימת\"],\"jzmguI\":[\"פגישות\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"לא נמצאו שפות מתאימות\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"בחר שפה\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"שפה ראשית\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"הוסף שפה\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"התחל כאשר הפגישה מתחילה\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"הוסף שפה מדוברת\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"שפת חיפוש...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"שפה ואזור\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"שתף נתוני שימוש\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"אפליקציה\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"שפות מדוברות נוספות\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"התחל אנלוג בכניסה\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"התראות\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"עצור כאשר הפגישה מסתיימת\"],\"jzmguI\":[\"פגישות\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"לא נמצאו שפות מתאימות\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"בחר שפה\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/hi/messages.po b/apps/desktop/src/i18n/locales/hi/messages.po index 7dceccd5fa..ffda3b32be 100644 --- a/apps/desktop/src/i18n/locales/hi/messages.po +++ b/apps/desktop/src/i18n/locales/hi/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/hi/messages.ts b/apps/desktop/src/i18n/locales/hi/messages.ts index 7478a79cae..d9f5f6bb91 100644 --- a/apps/desktop/src/i18n/locales/hi/messages.ts +++ b/apps/desktop/src/i18n/locales/hi/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"भाषा जोड़ें\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"मीटिंग शुरू होने पर प्रारंभ करें\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"बोली जाने वाली भाषा जोड़ें\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"खोज भाषा...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"भाषा एवं क्षेत्र\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"उपयोग डेटा साझा करें\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ऐप\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"अतिरिक्त बोली जाने वाली भाषाएँ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"लॉगिन पर अनारलॉग प्रारंभ करें\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"सूचनाएँ\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"मीटिंग ख़त्म होने पर रुकें\"],\"jzmguI\":[\"बैठकें\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"कोई मेल खाती भाषा नहीं मिली\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"भाषा चुनें\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"भाषा जोड़ें\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"मीटिंग शुरू होने पर प्रारंभ करें\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"बोली जाने वाली भाषा जोड़ें\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"खोज भाषा...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"भाषा एवं क्षेत्र\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"उपयोग डेटा साझा करें\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ऐप\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"अतिरिक्त बोली जाने वाली भाषाएँ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"लॉगिन पर अनारलॉग प्रारंभ करें\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"सूचनाएँ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"मीटिंग ख़त्म होने पर रुकें\"],\"jzmguI\":[\"बैठकें\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"कोई मेल खाती भाषा नहीं मिली\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"भाषा चुनें\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/hr/messages.po b/apps/desktop/src/i18n/locales/hr/messages.po index 280a6919f0..f08fe4a97e 100644 --- a/apps/desktop/src/i18n/locales/hr/messages.po +++ b/apps/desktop/src/i18n/locales/hr/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/hr/messages.ts b/apps/desktop/src/i18n/locales/hr/messages.ts index e99779dac4..eb67993309 100644 --- a/apps/desktop/src/i18n/locales/hr/messages.ts +++ b/apps/desktop/src/i18n/locales/hr/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Glavni jezik\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dodajte jezik\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Počni kada sastanak počne\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Dodaj govorni jezik\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Traži jezik...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Jezik i regija\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Dijeljenje podataka o korištenju\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikacija\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Dodatni govorni jezici\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Pokreni Anarlog pri prijavi\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Obavijesti\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Zaustavi kada sastanak završi\"],\"jzmguI\":[\"Sastanci\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nije pronađen nijedan odgovarajući jezik\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Odaberite jezik\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Glavni jezik\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dodajte jezik\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Počni kada sastanak počne\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Dodaj govorni jezik\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Traži jezik...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Jezik i regija\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Dijeljenje podataka o korištenju\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikacija\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Dodatni govorni jezici\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Pokreni Anarlog pri prijavi\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Obavijesti\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Zaustavi kada sastanak završi\"],\"jzmguI\":[\"Sastanci\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nije pronađen nijedan odgovarajući jezik\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Odaberite jezik\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ht/messages.po b/apps/desktop/src/i18n/locales/ht/messages.po index c2b6ed6628..19a016d600 100644 --- a/apps/desktop/src/i18n/locales/ht/messages.po +++ b/apps/desktop/src/i18n/locales/ht/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ht/messages.ts b/apps/desktop/src/i18n/locales/ht/messages.ts index 3f2f723f33..7dd3d7faa6 100644 --- a/apps/desktop/src/i18n/locales/ht/messages.ts +++ b/apps/desktop/src/i18n/locales/ht/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lang prensipal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ajoute lang\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Kòmanse lè reyinyon an kòmanse\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ajoute lang ki pale\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Rechèch lang...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Lang ak Rejyon\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Pataje done itilizasyon\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikasyon\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Anplis lang ki pale\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Kòmanse Anarlog lè w konekte\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notifikasyon\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Sispann lè reyinyon an fini\"],\"jzmguI\":[\"Reyinyon\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Okenn lang pa jwenn\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Chwazi lang\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lang prensipal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ajoute lang\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Kòmanse lè reyinyon an kòmanse\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ajoute lang ki pale\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Rechèch lang...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Lang ak Rejyon\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Pataje done itilizasyon\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikasyon\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Anplis lang ki pale\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Kòmanse Anarlog lè w konekte\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notifikasyon\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Sispann lè reyinyon an fini\"],\"jzmguI\":[\"Reyinyon\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Okenn lang pa jwenn\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Chwazi lang\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/hu/messages.po b/apps/desktop/src/i18n/locales/hu/messages.po index 15c8cbc314..e634f32d39 100644 --- a/apps/desktop/src/i18n/locales/hu/messages.po +++ b/apps/desktop/src/i18n/locales/hu/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/hu/messages.ts b/apps/desktop/src/i18n/locales/hu/messages.ts index b9f9398286..41209175f6 100644 --- a/apps/desktop/src/i18n/locales/hu/messages.ts +++ b/apps/desktop/src/i18n/locales/hu/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Fő nyelv\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Nyelv hozzáadása\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"A megbeszélés kezdetekor kezdődik\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Beszélt nyelv hozzáadása\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Keresési nyelv...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Nyelv és régió\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Használati adatok megosztása\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Alkalmazás\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"További beszélt nyelvek\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Indítsa el az Anarlogot bejelentkezéskor\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Értesítések\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Leállítás az értekezlet végén\"],\"jzmguI\":[\"Találkozók\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nincs megfelelő nyelv\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Nyelv kiválasztása\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Fő nyelv\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Nyelv hozzáadása\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"A megbeszélés kezdetekor kezdődik\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Beszélt nyelv hozzáadása\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Keresési nyelv...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Nyelv és régió\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Használati adatok megosztása\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Alkalmazás\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"További beszélt nyelvek\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Indítsa el az Anarlogot bejelentkezéskor\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Értesítések\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Leállítás az értekezlet végén\"],\"jzmguI\":[\"Találkozók\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nincs megfelelő nyelv\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Nyelv kiválasztása\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/hy/messages.po b/apps/desktop/src/i18n/locales/hy/messages.po index c7eb2da759..7bb2cccf7d 100644 --- a/apps/desktop/src/i18n/locales/hy/messages.po +++ b/apps/desktop/src/i18n/locales/hy/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/hy/messages.ts b/apps/desktop/src/i18n/locales/hy/messages.ts index a78035ffe5..f725e2ce23 100644 --- a/apps/desktop/src/i18n/locales/hy/messages.ts +++ b/apps/desktop/src/i18n/locales/hy/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Հիմնական լեզու\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ավելացնել լեզու\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Սկսել, երբ հանդիպումը սկսվի\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ավելացնել խոսակցական լեզու\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Որոնման լեզուն...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Լեզուն և տարածաշրջանը\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Կիսեք օգտագործման տվյալները\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Հավելված\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Լրացուցիչ խոսակցական լեզուներ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Մուտք գործեք Anarlog-ը\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Ծանուցումներ\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Դադարեցնել, երբ հանդիպումն ավարտվի\"],\"jzmguI\":[\"Հանդիպումներ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Համապատասխան լեզուներ չեն գտնվել\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Ընտրեք լեզուն\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Հիմնական լեզու\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ավելացնել լեզու\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Սկսել, երբ հանդիպումը սկսվի\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ավելացնել խոսակցական լեզու\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Որոնման լեզուն...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Լեզուն և տարածաշրջանը\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Կիսեք օգտագործման տվյալները\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Հավելված\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Լրացուցիչ խոսակցական լեզուներ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Մուտք գործեք Anarlog-ը\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Ծանուցումներ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Դադարեցնել, երբ հանդիպումն ավարտվի\"],\"jzmguI\":[\"Հանդիպումներ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Համապատասխան լեզուներ չեն գտնվել\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Ընտրեք լեզուն\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/id/messages.po b/apps/desktop/src/i18n/locales/id/messages.po index 25301d4446..f90c00d650 100644 --- a/apps/desktop/src/i18n/locales/id/messages.po +++ b/apps/desktop/src/i18n/locales/id/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/id/messages.ts b/apps/desktop/src/i18n/locales/id/messages.ts index 527202b04a..8be9a8ff1c 100644 --- a/apps/desktop/src/i18n/locales/id/messages.ts +++ b/apps/desktop/src/i18n/locales/id/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Bahasa utama\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tambahkan bahasa\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Mulai saat rapat dimulai\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Tambahkan bahasa lisan\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Bahasa penelusuran...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Bahasa & Wilayah\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Bagikan data penggunaan\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikasi\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Bahasa lisan tambahan\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Mulai Anarlog saat login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Pemberitahuan\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Berhenti ketika rapat berakhir\"],\"jzmguI\":[\"Rapat\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Tidak ditemukan bahasa yang cocok\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Pilih bahasa\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Bahasa utama\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tambahkan bahasa\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Mulai saat rapat dimulai\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Tambahkan bahasa lisan\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Bahasa penelusuran...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Bahasa & Wilayah\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Bagikan data penggunaan\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikasi\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Bahasa lisan tambahan\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Mulai Anarlog saat login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Pemberitahuan\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Berhenti ketika rapat berakhir\"],\"jzmguI\":[\"Rapat\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Tidak ditemukan bahasa yang cocok\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Pilih bahasa\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ig/messages.po b/apps/desktop/src/i18n/locales/ig/messages.po index 72d5a09bff..0af72e4aa7 100644 --- a/apps/desktop/src/i18n/locales/ig/messages.po +++ b/apps/desktop/src/i18n/locales/ig/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ig/messages.ts b/apps/desktop/src/i18n/locales/ig/messages.ts index 96c2eec0c8..fe9e8df056 100644 --- a/apps/desktop/src/i18n/locales/ig/messages.ts +++ b/apps/desktop/src/i18n/locales/ig/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Asụsụ isi\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tinye asụsụ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Malite mgbe nzukọ ga-amalite\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Tinye asụsụ asụ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Chọọ asụsụ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Asụsụ & Mpaghara\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kekọrịta data ojiji\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ngwa\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Asụsụ ndị agbakwunyere\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Bido Anarlog na nbanye\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Ọkwa\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Kwụsị mgbe nzukọ agwụ\"],\"jzmguI\":[\"Nzukọ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ọnweghị asụsụ dabara adaba ahụrụ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Họrọ asụsụ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Asụsụ isi\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tinye asụsụ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Malite mgbe nzukọ ga-amalite\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Tinye asụsụ asụ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Chọọ asụsụ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Asụsụ & Mpaghara\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kekọrịta data ojiji\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ngwa\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Asụsụ ndị agbakwunyere\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Bido Anarlog na nbanye\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Ọkwa\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Kwụsị mgbe nzukọ agwụ\"],\"jzmguI\":[\"Nzukọ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ọnweghị asụsụ dabara adaba ahụrụ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Họrọ asụsụ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/is/messages.po b/apps/desktop/src/i18n/locales/is/messages.po index 50626de288..21258f7b36 100644 --- a/apps/desktop/src/i18n/locales/is/messages.po +++ b/apps/desktop/src/i18n/locales/is/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/is/messages.ts b/apps/desktop/src/i18n/locales/is/messages.ts index 0b5d4247ab..9854e6bce2 100644 --- a/apps/desktop/src/i18n/locales/is/messages.ts +++ b/apps/desktop/src/i18n/locales/is/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Aðaltungumál\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Bæta við tungumáli\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Byrjaðu þegar fundur hefst\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Bæta við töluðu máli\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Leita tungumál...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Tungumál og svæði\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Deildu notkunargögnum\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Viðbótar töluð tungumál\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Byrjaðu Anarlog við innskráningu\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Tilkynningar\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Hættu þegar fundi lýkur\"],\"jzmguI\":[\"Fundir\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Engin tungumál sem passa við fundust\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Veldu tungumál\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Aðaltungumál\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Bæta við tungumáli\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Byrjaðu þegar fundur hefst\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Bæta við töluðu máli\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Leita tungumál...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Tungumál og svæði\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Deildu notkunargögnum\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Viðbótar töluð tungumál\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Byrjaðu Anarlog við innskráningu\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Tilkynningar\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Hættu þegar fundi lýkur\"],\"jzmguI\":[\"Fundir\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Engin tungumál sem passa við fundust\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Veldu tungumál\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/it/messages.po b/apps/desktop/src/i18n/locales/it/messages.po index a12905b4db..33dac072aa 100644 --- a/apps/desktop/src/i18n/locales/it/messages.po +++ b/apps/desktop/src/i18n/locales/it/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/it/messages.ts b/apps/desktop/src/i18n/locales/it/messages.ts index 85e4e7c54b..287dcc1774 100644 --- a/apps/desktop/src/i18n/locales/it/messages.ts +++ b/apps/desktop/src/i18n/locales/it/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lingua principale\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Aggiungi lingua\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Avvia all'inizio della riunione\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Aggiungi lingua parlata\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Cerca lingua...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Lingua e regione\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Condividi dati di utilizzo\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Lingue parlate aggiuntive\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Avvia Anarlog all'accesso\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notifiche\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Interrompi alla fine della riunione\"],\"jzmguI\":[\"Riunioni\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nessuna lingua corrispondente trovata\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Seleziona lingua\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lingua principale\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Aggiungi lingua\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Avvia all'inizio della riunione\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Aggiungi lingua parlata\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Cerca lingua...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Lingua e regione\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Condividi dati di utilizzo\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Lingue parlate aggiuntive\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Avvia Anarlog all'accesso\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notifiche\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Interrompi alla fine della riunione\"],\"jzmguI\":[\"Riunioni\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nessuna lingua corrispondente trovata\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Seleziona lingua\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ja/messages.po b/apps/desktop/src/i18n/locales/ja/messages.po index f54c524dae..257bce17bd 100644 --- a/apps/desktop/src/i18n/locales/ja/messages.po +++ b/apps/desktop/src/i18n/locales/ja/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ja/messages.ts b/apps/desktop/src/i18n/locales/ja/messages.ts index 5d7fd86da6..c765103290 100644 --- a/apps/desktop/src/i18n/locales/ja/messages.ts +++ b/apps/desktop/src/i18n/locales/ja/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"メイン言語\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"言語を追加\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"会議開始時に開始\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"音声言語を追加\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"言語を検索...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"言語と地域\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"使用状況データを共有\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"アプリ\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"追加の音声言語\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ログイン時に Anarlog を起動\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"通知\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"会議終了時に停止\"],\"jzmguI\":[\"会議\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"一致する言語が見つかりません\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"言語を選択\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"メイン言語\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"言語を追加\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"会議開始時に開始\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"音声言語を追加\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"言語を検索...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"言語と地域\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"使用状況データを共有\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"アプリ\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"追加の音声言語\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ログイン時に Anarlog を起動\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"通知\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"会議終了時に停止\"],\"jzmguI\":[\"会議\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"一致する言語が見つかりません\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"言語を選択\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/jv/messages.po b/apps/desktop/src/i18n/locales/jv/messages.po index 2e139202bb..280216840b 100644 --- a/apps/desktop/src/i18n/locales/jv/messages.po +++ b/apps/desktop/src/i18n/locales/jv/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/jv/messages.ts b/apps/desktop/src/i18n/locales/jv/messages.ts index 70a9967c04..7df54865a1 100644 --- a/apps/desktop/src/i18n/locales/jv/messages.ts +++ b/apps/desktop/src/i18n/locales/jv/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Basa utama\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tambah basa\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Miwiti nalika rapat diwiwiti\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Tambahake basa lisan\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Telusuri basa...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Basa & Wilayah\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Nuduhake data panggunaan\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikasi\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Basa lisan tambahan\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Mulai Anarlog nalika mlebu\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Kabar\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Mandheg nalika rapat rampung\"],\"jzmguI\":[\"Patemon\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ora ditemokake basa sing cocog\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Pilih basa\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Basa utama\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tambah basa\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Miwiti nalika rapat diwiwiti\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Tambahake basa lisan\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Telusuri basa...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Basa & Wilayah\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Nuduhake data panggunaan\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikasi\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Basa lisan tambahan\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Mulai Anarlog nalika mlebu\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Kabar\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Mandheg nalika rapat rampung\"],\"jzmguI\":[\"Patemon\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ora ditemokake basa sing cocog\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Pilih basa\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ka/messages.po b/apps/desktop/src/i18n/locales/ka/messages.po index 4127df3268..c8b217a665 100644 --- a/apps/desktop/src/i18n/locales/ka/messages.po +++ b/apps/desktop/src/i18n/locales/ka/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ka/messages.ts b/apps/desktop/src/i18n/locales/ka/messages.ts index 9d1a1c5a90..8ffb06e022 100644 --- a/apps/desktop/src/i18n/locales/ka/messages.ts +++ b/apps/desktop/src/i18n/locales/ka/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"მთავარი ენა\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ენის დამატება\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"დაიწყეთ შეხვედრის დაწყებისთანავე\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"სალაპარაკო ენის დამატება\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ენის ძიება...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ენა და რეგიონი\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"გამოყენების მონაცემების გაზიარება\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"აპი\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"დამატებითი სალაპარაკო ენები\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"დაიწყეთ Anarlog შესვლისას\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"შეტყობინებები\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"შეჩერება შეხვედრის დასრულებისას\"],\"jzmguI\":[\"შეხვედრები\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"შესაბამისი ენები ვერ მოიძებნა\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"აირჩიეთ ენა\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"მთავარი ენა\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ენის დამატება\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"დაიწყეთ შეხვედრის დაწყებისთანავე\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"სალაპარაკო ენის დამატება\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ენის ძიება...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ენა და რეგიონი\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"გამოყენების მონაცემების გაზიარება\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"აპი\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"დამატებითი სალაპარაკო ენები\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"დაიწყეთ Anarlog შესვლისას\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"შეტყობინებები\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"შეჩერება შეხვედრის დასრულებისას\"],\"jzmguI\":[\"შეხვედრები\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"შესაბამისი ენები ვერ მოიძებნა\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"აირჩიეთ ენა\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/kk/messages.po b/apps/desktop/src/i18n/locales/kk/messages.po index bc2ff8db1c..41d3f8faf3 100644 --- a/apps/desktop/src/i18n/locales/kk/messages.po +++ b/apps/desktop/src/i18n/locales/kk/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/kk/messages.ts b/apps/desktop/src/i18n/locales/kk/messages.ts index 554fd7c5d9..08ad009aea 100644 --- a/apps/desktop/src/i18n/locales/kk/messages.ts +++ b/apps/desktop/src/i18n/locales/kk/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Негізгі тіл\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Тілді қосу\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Кездесу басталғанда бастаңыз\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Сөйлеу тілін қосу\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Іздеу тілі...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Тіл және аймақ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Пайдалану деректерін бөлісу\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Қолданба\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Қосымша ауызекі тілдер\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Кіру кезінде Anarlog іске қосыңыз\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Хабарландырулар\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Кездесу аяқталғанда тоқтатыңыз\"],\"jzmguI\":[\"Кездесулер\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Сәйкес тіл табылмады\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Тілді таңдаңыз\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Негізгі тіл\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Тілді қосу\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Кездесу басталғанда бастаңыз\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Сөйлеу тілін қосу\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Іздеу тілі...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Тіл және аймақ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Пайдалану деректерін бөлісу\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Қолданба\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Қосымша ауызекі тілдер\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Кіру кезінде Anarlog іске қосыңыз\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Хабарландырулар\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Кездесу аяқталғанда тоқтатыңыз\"],\"jzmguI\":[\"Кездесулер\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Сәйкес тіл табылмады\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Тілді таңдаңыз\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/km/messages.po b/apps/desktop/src/i18n/locales/km/messages.po index 4d29336ab8..81c045efe8 100644 --- a/apps/desktop/src/i18n/locales/km/messages.po +++ b/apps/desktop/src/i18n/locales/km/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/km/messages.ts b/apps/desktop/src/i18n/locales/km/messages.ts index fa6d9cb78e..012513521b 100644 --- a/apps/desktop/src/i18n/locales/km/messages.ts +++ b/apps/desktop/src/i18n/locales/km/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ភាសាចម្បង\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"បន្ថែមភាសា\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ចាប់ផ្តើមនៅពេលការប្រជុំចាប់ផ្តើម\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"បន្ថែមភាសានិយាយ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ភាសាស្វែងរក...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ភាសា និងតំបន់\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ចែករំលែកទិន្នន័យការប្រើប្រាស់\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"កម្មវិធី\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ភាសានិយាយបន្ថែម\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ចាប់ផ្តើម Anarlog នៅពេលចូល\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"ការជូនដំណឹង\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ឈប់នៅពេលការប្រជុំបញ្ចប់\"],\"jzmguI\":[\"ការប្រជុំ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"រកមិនឃើញភាសាដែលត្រូវគ្នាទេ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ជ្រើសរើសភាសា\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ភាសាចម្បង\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"បន្ថែមភាសា\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ចាប់ផ្តើមនៅពេលការប្រជុំចាប់ផ្តើម\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"បន្ថែមភាសានិយាយ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ភាសាស្វែងរក...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ភាសា និងតំបន់\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ចែករំលែកទិន្នន័យការប្រើប្រាស់\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"កម្មវិធី\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ភាសានិយាយបន្ថែម\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ចាប់ផ្តើម Anarlog នៅពេលចូល\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"ការជូនដំណឹង\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ឈប់នៅពេលការប្រជុំបញ្ចប់\"],\"jzmguI\":[\"ការប្រជុំ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"រកមិនឃើញភាសាដែលត្រូវគ្នាទេ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ជ្រើសរើសភាសា\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/kn/messages.po b/apps/desktop/src/i18n/locales/kn/messages.po index 94c9629883..bf621ae968 100644 --- a/apps/desktop/src/i18n/locales/kn/messages.po +++ b/apps/desktop/src/i18n/locales/kn/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/kn/messages.ts b/apps/desktop/src/i18n/locales/kn/messages.ts index 5ec2a848a2..ccd2288979 100644 --- a/apps/desktop/src/i18n/locales/kn/messages.ts +++ b/apps/desktop/src/i18n/locales/kn/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ಮುಖ್ಯ ಭಾಷೆ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ಭಾಷೆಯನ್ನು ಸೇರಿಸಿ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ಸಭೆ ಪ್ರಾರಂಭವಾದಾಗ ಪ್ರಾರಂಭಿಸಿ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ಮಾತನಾಡುವ ಭಾಷೆಯನ್ನು ಸೇರಿಸಿ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ಹುಡುಕಾಟ ಭಾಷೆ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ಭಾಷೆ ಮತ್ತು ಪ್ರದೇಶ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ಬಳಕೆಯ ಡೇಟಾವನ್ನು ಹಂಚಿಕೊಳ್ಳಿ\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ಅಪ್ಲಿಕೇಶನ್\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ಹೆಚ್ಚುವರಿ ಮಾತನಾಡುವ ಭಾಷೆಗಳು\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ಲಾಗಿನ್‌ನಲ್ಲಿ ಅನಾರ್ಲಾಗ್ ಅನ್ನು ಪ್ರಾರಂಭಿಸಿ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"ಅಧಿಸೂಚನೆಗಳು\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ಸಭೆಯು ಕೊನೆಗೊಂಡಾಗ ನಿಲ್ಲಿಸಿ\"],\"jzmguI\":[\"ಸಭೆಗಳು\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ಯಾವುದೇ ಹೊಂದಾಣಿಕೆಯ ಭಾಷೆಗಳು ಕಂಡುಬಂದಿಲ್ಲ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ಭಾಷೆಯನ್ನು ಆಯ್ಕೆಮಾಡಿ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ಮುಖ್ಯ ಭಾಷೆ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ಭಾಷೆಯನ್ನು ಸೇರಿಸಿ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ಸಭೆ ಪ್ರಾರಂಭವಾದಾಗ ಪ್ರಾರಂಭಿಸಿ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ಮಾತನಾಡುವ ಭಾಷೆಯನ್ನು ಸೇರಿಸಿ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ಹುಡುಕಾಟ ಭಾಷೆ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ಭಾಷೆ ಮತ್ತು ಪ್ರದೇಶ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ಬಳಕೆಯ ಡೇಟಾವನ್ನು ಹಂಚಿಕೊಳ್ಳಿ\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ಅಪ್ಲಿಕೇಶನ್\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ಹೆಚ್ಚುವರಿ ಮಾತನಾಡುವ ಭಾಷೆಗಳು\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ಲಾಗಿನ್‌ನಲ್ಲಿ ಅನಾರ್ಲಾಗ್ ಅನ್ನು ಪ್ರಾರಂಭಿಸಿ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"ಅಧಿಸೂಚನೆಗಳು\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ಸಭೆಯು ಕೊನೆಗೊಂಡಾಗ ನಿಲ್ಲಿಸಿ\"],\"jzmguI\":[\"ಸಭೆಗಳು\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ಯಾವುದೇ ಹೊಂದಾಣಿಕೆಯ ಭಾಷೆಗಳು ಕಂಡುಬಂದಿಲ್ಲ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ಭಾಷೆಯನ್ನು ಆಯ್ಕೆಮಾಡಿ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ko/messages.po b/apps/desktop/src/i18n/locales/ko/messages.po index 325ff20c08..4b390029bc 100644 --- a/apps/desktop/src/i18n/locales/ko/messages.po +++ b/apps/desktop/src/i18n/locales/ko/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ko/messages.ts b/apps/desktop/src/i18n/locales/ko/messages.ts index ab2fc05c67..49d4f0b47f 100644 --- a/apps/desktop/src/i18n/locales/ko/messages.ts +++ b/apps/desktop/src/i18n/locales/ko/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"기본 언어\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"언어 추가\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"회의 시작 시 시작\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"음성 언어 추가\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"언어 검색...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"언어 및 지역\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"사용 데이터 공유\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"앱\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"추가 음성 언어\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"로그인 시 Anarlog 시작\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"알림\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"회의 종료 시 중지\"],\"jzmguI\":[\"회의\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"일치하는 언어를 찾을 수 없습니다\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"언어 선택\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"기본 언어\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"언어 추가\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"회의 시작 시 시작\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"음성 언어 추가\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"언어 검색...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"언어 및 지역\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"사용 데이터 공유\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"앱\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"추가 음성 언어\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"로그인 시 Anarlog 시작\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"알림\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"회의 종료 시 중지\"],\"jzmguI\":[\"회의\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"일치하는 언어를 찾을 수 없습니다\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"언어 선택\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ku/messages.po b/apps/desktop/src/i18n/locales/ku/messages.po index 101221a772..910d3d3b65 100644 --- a/apps/desktop/src/i18n/locales/ku/messages.po +++ b/apps/desktop/src/i18n/locales/ku/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ku/messages.ts b/apps/desktop/src/i18n/locales/ku/messages.ts index 79ac57087c..f94635af7d 100644 --- a/apps/desktop/src/i18n/locales/ku/messages.ts +++ b/apps/desktop/src/i18n/locales/ku/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Zimanê sereke\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ziman lê zêde bike\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Dema civîn dest pê dike\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Zimanê axaftinê lê zêde bike\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Zimanê gerînê...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Ziman û Herêm\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Daneyên bikaranînê parve bikin\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Zimanên axaftinê yên zêde\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Di têketinê de Anarlogê dest pê bike\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Agahdar\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Dema civîn biqede raweste\"],\"jzmguI\":[\"Hevdîtin\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Zimanên lihevhatî nehatin dîtin\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Ziman hilbijêre\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Zimanê sereke\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ziman lê zêde bike\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Dema civîn dest pê dike\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Zimanê axaftinê lê zêde bike\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Zimanê gerînê...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Ziman û Herêm\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Daneyên bikaranînê parve bikin\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Zimanên axaftinê yên zêde\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Di têketinê de Anarlogê dest pê bike\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Agahdar\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Dema civîn biqede raweste\"],\"jzmguI\":[\"Hevdîtin\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Zimanên lihevhatî nehatin dîtin\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Ziman hilbijêre\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ky/messages.po b/apps/desktop/src/i18n/locales/ky/messages.po index 1f36f63c49..d3cdac8ee1 100644 --- a/apps/desktop/src/i18n/locales/ky/messages.po +++ b/apps/desktop/src/i18n/locales/ky/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ky/messages.ts b/apps/desktop/src/i18n/locales/ky/messages.ts index 9a2a816688..1eff167656 100644 --- a/apps/desktop/src/i18n/locales/ky/messages.ts +++ b/apps/desktop/src/i18n/locales/ky/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Негизги тил\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Тил кошуу\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Жолугушуу башталганда баштаңыз\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Оозеки тилди кошуңуз\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Тилди издөө...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Тил жана аймак\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Колдонуу дайындарын бөлүшүү\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Колдонмо\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Кошумча сүйлөө тилдери\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Кирүү учурунда Anarlogти баштаңыз\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Эскертмелер\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Жолугушуу аяктаганда токтоңуз\"],\"jzmguI\":[\"Жолугушуулар\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Дал келген тилдер табылган жок\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Тилди тандаңыз\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Негизги тил\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Тил кошуу\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Жолугушуу башталганда баштаңыз\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Оозеки тилди кошуңуз\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Тилди издөө...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Тил жана аймак\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Колдонуу дайындарын бөлүшүү\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Колдонмо\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Кошумча сүйлөө тилдери\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Кирүү учурунда Anarlogти баштаңыз\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Эскертмелер\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Жолугушуу аяктаганда токтоңуз\"],\"jzmguI\":[\"Жолугушуулар\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Дал келген тилдер табылган жок\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Тилди тандаңыз\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/la/messages.po b/apps/desktop/src/i18n/locales/la/messages.po index b61d2a7b90..05c37de36d 100644 --- a/apps/desktop/src/i18n/locales/la/messages.po +++ b/apps/desktop/src/i18n/locales/la/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/la/messages.ts b/apps/desktop/src/i18n/locales/la/messages.ts index eb5e18eab2..10c341b6d7 100644 --- a/apps/desktop/src/i18n/locales/la/messages.ts +++ b/apps/desktop/src/i18n/locales/la/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lingua principalis\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Linguam addere\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Committitur cum conventu incipit\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Linguam vocalem addere\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Quaerere linguam...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Lingua & Regio\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Phare usus data\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Additional linguas vocales\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Incipit Anarlog in login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificationes\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Desine cum fines conventum\"],\"jzmguI\":[\"Placitum\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Non inventae linguae matching\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Linguam selectam\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lingua principalis\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Linguam addere\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Committitur cum conventu incipit\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Linguam vocalem addere\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Quaerere linguam...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Lingua & Regio\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Phare usus data\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Additional linguas vocales\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Incipit Anarlog in login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificationes\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Desine cum fines conventum\"],\"jzmguI\":[\"Placitum\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Non inventae linguae matching\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Linguam selectam\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/lb/messages.po b/apps/desktop/src/i18n/locales/lb/messages.po index 19bd7ac64b..72fab0fe5c 100644 --- a/apps/desktop/src/i18n/locales/lb/messages.po +++ b/apps/desktop/src/i18n/locales/lb/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/lb/messages.ts b/apps/desktop/src/i18n/locales/lb/messages.ts index ebcce13c47..9b4d8b2702 100644 --- a/apps/desktop/src/i18n/locales/lb/messages.ts +++ b/apps/desktop/src/i18n/locales/lb/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Haaptsprooch\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Sprooch derbäi\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start wann d'Versammlung ufänkt\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Füügt geschwat Sprooch\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Sich Sprooch...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Sprooch & Regioun\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Verbrauchsdaten deelen\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Zousätzlech geschwat Sproochen\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Start Anarlog beim Login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notifikatiounen\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stopp wann d'Versammlung eriwwer ass\"],\"jzmguI\":[\"Versammlungen\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Keng passende Sprooche fonnt\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Sprooch auswielen\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Haaptsprooch\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Sprooch derbäi\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start wann d'Versammlung ufänkt\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Füügt geschwat Sprooch\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Sich Sprooch...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Sprooch & Regioun\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Verbrauchsdaten deelen\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Zousätzlech geschwat Sproochen\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Start Anarlog beim Login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notifikatiounen\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stopp wann d'Versammlung eriwwer ass\"],\"jzmguI\":[\"Versammlungen\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Keng passende Sprooche fonnt\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Sprooch auswielen\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/lg/messages.po b/apps/desktop/src/i18n/locales/lg/messages.po index adb034182e..51e7fa275e 100644 --- a/apps/desktop/src/i18n/locales/lg/messages.po +++ b/apps/desktop/src/i18n/locales/lg/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/lg/messages.ts b/apps/desktop/src/i18n/locales/lg/messages.ts index b310cef38e..050124c2fd 100644 --- a/apps/desktop/src/i18n/locales/lg/messages.ts +++ b/apps/desktop/src/i18n/locales/lg/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Olulimi olukulu\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ongerako olulimi\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Tandika ng'olukiiko lutandise\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ongerako olulimi olwogerwa\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Olulimi lw'okunoonya...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Olulimi & Ekitundu\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Gabana data y'enkozesa\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ekikozesebwa\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ennimi endala ezoogerwa\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Tandika Anarlog ku kuyingira\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Ebimanyisibwa\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Komya ng'olukiiko luwedde\"],\"jzmguI\":[\"Enkiiko\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Tewali nnimi zikwatagana zizuuliddwa\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Londa olulimi\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Olulimi olukulu\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ongerako olulimi\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Tandika ng'olukiiko lutandise\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ongerako olulimi olwogerwa\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Olulimi lw'okunoonya...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Olulimi & Ekitundu\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Gabana data y'enkozesa\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ekikozesebwa\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ennimi endala ezoogerwa\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Tandika Anarlog ku kuyingira\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Ebimanyisibwa\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Komya ng'olukiiko luwedde\"],\"jzmguI\":[\"Enkiiko\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Tewali nnimi zikwatagana zizuuliddwa\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Londa olulimi\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ln/messages.po b/apps/desktop/src/i18n/locales/ln/messages.po index 4bf0f4c673..a3e2ee990c 100644 --- a/apps/desktop/src/i18n/locales/ln/messages.po +++ b/apps/desktop/src/i18n/locales/ln/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ln/messages.ts b/apps/desktop/src/i18n/locales/ln/messages.ts index d22e7ae8fd..8c0c0bd04b 100644 --- a/apps/desktop/src/i18n/locales/ln/messages.ts +++ b/apps/desktop/src/i18n/locales/ln/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Monoko ya monene\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Bakisa monoko\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Banda tango likita ekobanda\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Bakisa monoko oyo balobaka\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Boluka monoko...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Monoko & Etuka\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kabola ba données ya bosaleli\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Esaleli\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Minoko ya kobakisa oyo balobaka\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Banda Anarlog na bokoti\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Mayebisi\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Tika tango likita ekosila\"],\"jzmguI\":[\"Makita\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Minoko oyo ekokani ezwami te\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Pona monoko\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Monoko ya monene\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Bakisa monoko\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Banda tango likita ekobanda\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Bakisa monoko oyo balobaka\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Boluka monoko...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Monoko & Etuka\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kabola ba données ya bosaleli\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Esaleli\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Minoko ya kobakisa oyo balobaka\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Banda Anarlog na bokoti\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Mayebisi\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Tika tango likita ekosila\"],\"jzmguI\":[\"Makita\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Minoko oyo ekokani ezwami te\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Pona monoko\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/lo/messages.po b/apps/desktop/src/i18n/locales/lo/messages.po index 1cf0e91642..cf37e827a9 100644 --- a/apps/desktop/src/i18n/locales/lo/messages.po +++ b/apps/desktop/src/i18n/locales/lo/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/lo/messages.ts b/apps/desktop/src/i18n/locales/lo/messages.ts index 9c9ec69e2f..8f69ddb0d4 100644 --- a/apps/desktop/src/i18n/locales/lo/messages.ts +++ b/apps/desktop/src/i18n/locales/lo/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ພາສາຫຼັກ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ເພີ່ມພາສາ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ເລີ່ມເມື່ອການປະຊຸມເລີ່ມຕົ້ນ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ເພີ່ມພາສາເວົ້າ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ພາສາຄົ້ນຫາ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ພາສາ ແລະພາກພື້ນ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ແບ່ງປັນຂໍ້ມູນການນຳໃຊ້\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ແອັບ\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ພາສາເວົ້າເພີ່ມເຕີມ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ເລີ່ມ​ຕົ້ນ​ອະນາ​ລັອກ​ທີ່​ເຂົ້າ​ສູ່​ລະ​ບົບ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"ການແຈ້ງເຕືອນ\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ຢຸດເມື່ອການປະຊຸມຈົບລົງ\"],\"jzmguI\":[\"ການປະຊຸມ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ບໍ່ພົບພາສາທີ່ກົງກັນ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ເລືອກພາສາ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ພາສາຫຼັກ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ເພີ່ມພາສາ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ເລີ່ມເມື່ອການປະຊຸມເລີ່ມຕົ້ນ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ເພີ່ມພາສາເວົ້າ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ພາສາຄົ້ນຫາ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ພາສາ ແລະພາກພື້ນ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ແບ່ງປັນຂໍ້ມູນການນຳໃຊ້\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ແອັບ\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ພາສາເວົ້າເພີ່ມເຕີມ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ເລີ່ມ​ຕົ້ນ​ອະນາ​ລັອກ​ທີ່​ເຂົ້າ​ສູ່​ລະ​ບົບ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"ການແຈ້ງເຕືອນ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ຢຸດເມື່ອການປະຊຸມຈົບລົງ\"],\"jzmguI\":[\"ການປະຊຸມ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ບໍ່ພົບພາສາທີ່ກົງກັນ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ເລືອກພາສາ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/lt/messages.po b/apps/desktop/src/i18n/locales/lt/messages.po index 6bf738323e..d324d1490c 100644 --- a/apps/desktop/src/i18n/locales/lt/messages.po +++ b/apps/desktop/src/i18n/locales/lt/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/lt/messages.ts b/apps/desktop/src/i18n/locales/lt/messages.ts index 199f77919d..f9b7dd5c6e 100644 --- a/apps/desktop/src/i18n/locales/lt/messages.ts +++ b/apps/desktop/src/i18n/locales/lt/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Pagrindinė kalba\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Pridėti kalbą\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Pradėkite susitikimo pradžioje\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Pridėti šnekamąją kalbą\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Paieškos kalba...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Kalba ir regionas\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Bendrinti naudojimo duomenis\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Programa\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Papildomos šnekamosios kalbos\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Prisijungę paleiskite Anarlog\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Pranešimai\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Sustabdykite susitikimui pasibaigus\"],\"jzmguI\":[\"Susitikimai\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nerasta atitinkančių kalbų\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Pasirinkite kalbą\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Pagrindinė kalba\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Pridėti kalbą\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Pradėkite susitikimo pradžioje\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Pridėti šnekamąją kalbą\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Paieškos kalba...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Kalba ir regionas\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Bendrinti naudojimo duomenis\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Programa\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Papildomos šnekamosios kalbos\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Prisijungę paleiskite Anarlog\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Pranešimai\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Sustabdykite susitikimui pasibaigus\"],\"jzmguI\":[\"Susitikimai\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nerasta atitinkančių kalbų\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Pasirinkite kalbą\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/lv/messages.po b/apps/desktop/src/i18n/locales/lv/messages.po index 5293f00716..64ce3483e2 100644 --- a/apps/desktop/src/i18n/locales/lv/messages.po +++ b/apps/desktop/src/i18n/locales/lv/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/lv/messages.ts b/apps/desktop/src/i18n/locales/lv/messages.ts index 31db288d7f..4a32aa80c7 100644 --- a/apps/desktop/src/i18n/locales/lv/messages.ts +++ b/apps/desktop/src/i18n/locales/lv/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Galvenā valoda\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Pievienot valodu\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Sāciet, kad sākas sapulce\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Pievienojiet runāto valodu\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Meklēšanas valoda...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Valoda un reģions\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kopīgojiet lietojuma datus\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Lietotne\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Papildu runātās valodas\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Sāciet Anarlog pie pieteikšanās\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Paziņojumi\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Pārtraukt, kad sapulce beidzas\"],\"jzmguI\":[\"Sapulces\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nav atrasta neviena atbilstoša valoda\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Atlasiet valodu\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Galvenā valoda\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Pievienot valodu\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Sāciet, kad sākas sapulce\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Pievienojiet runāto valodu\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Meklēšanas valoda...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Valoda un reģions\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kopīgojiet lietojuma datus\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Lietotne\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Papildu runātās valodas\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Sāciet Anarlog pie pieteikšanās\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Paziņojumi\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Pārtraukt, kad sapulce beidzas\"],\"jzmguI\":[\"Sapulces\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nav atrasta neviena atbilstoša valoda\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Atlasiet valodu\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/mg/messages.po b/apps/desktop/src/i18n/locales/mg/messages.po index e8547c1209..547f0ed48a 100644 --- a/apps/desktop/src/i18n/locales/mg/messages.po +++ b/apps/desktop/src/i18n/locales/mg/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/mg/messages.ts b/apps/desktop/src/i18n/locales/mg/messages.ts index 5df0d6ca2d..b3a2c27a0d 100644 --- a/apps/desktop/src/i18n/locales/mg/messages.ts +++ b/apps/desktop/src/i18n/locales/mg/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Fiteny fototra\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ampio fiteny\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Atombohy rehefa manomboka ny fivoriana\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ampio fiteny ampiasaina\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Fiteny fikarohana...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Fiteny & Faritra\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Mizara angona fampiasana\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Fiteny ampiasaina fanampiny\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Atombohy Anarlog amin'ny fidirana\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Fampandrenesana\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Atsaharo rehefa tapitra ny fivoriana\"],\"jzmguI\":[\"Fihaonana\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Tsy misy fiteny mifanandrify hita\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Misafidiana fiteny\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Fiteny fototra\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ampio fiteny\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Atombohy rehefa manomboka ny fivoriana\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ampio fiteny ampiasaina\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Fiteny fikarohana...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Fiteny & Faritra\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Mizara angona fampiasana\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Fiteny ampiasaina fanampiny\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Atombohy Anarlog amin'ny fidirana\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Fampandrenesana\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Atsaharo rehefa tapitra ny fivoriana\"],\"jzmguI\":[\"Fihaonana\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Tsy misy fiteny mifanandrify hita\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Misafidiana fiteny\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/mi/messages.po b/apps/desktop/src/i18n/locales/mi/messages.po index 6a861de5a9..e29e034cc2 100644 --- a/apps/desktop/src/i18n/locales/mi/messages.po +++ b/apps/desktop/src/i18n/locales/mi/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/mi/messages.ts b/apps/desktop/src/i18n/locales/mi/messages.ts index 80e55ce8c0..f7b4dd838e 100644 --- a/apps/desktop/src/i18n/locales/mi/messages.ts +++ b/apps/desktop/src/i18n/locales/mi/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Te reo matua\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tāpiri reo\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Timata ina timata te hui\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Taapirihia te reo korero\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Rapu reo...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Reo me te Rohe\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Tirihia nga raraunga whakamahinga\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Taupānga\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Apiti atu reo korero\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Tīmata Anarlog i te takiuru\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Whakamōhiotanga\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Kati ina mutu te hui\"],\"jzmguI\":[\"Nga Hui\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Kāore he reo ōrite i kitea\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Tīpakohia te reo\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Te reo matua\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tāpiri reo\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Timata ina timata te hui\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Taapirihia te reo korero\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Rapu reo...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Reo me te Rohe\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Tirihia nga raraunga whakamahinga\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Taupānga\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Apiti atu reo korero\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Tīmata Anarlog i te takiuru\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Whakamōhiotanga\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Kati ina mutu te hui\"],\"jzmguI\":[\"Nga Hui\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Kāore he reo ōrite i kitea\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Tīpakohia te reo\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/mk/messages.po b/apps/desktop/src/i18n/locales/mk/messages.po index 18c0b57c40..52fcef650d 100644 --- a/apps/desktop/src/i18n/locales/mk/messages.po +++ b/apps/desktop/src/i18n/locales/mk/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/mk/messages.ts b/apps/desktop/src/i18n/locales/mk/messages.ts index 6fc9b22c43..90f2a629a6 100644 --- a/apps/desktop/src/i18n/locales/mk/messages.ts +++ b/apps/desktop/src/i18n/locales/mk/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Главен јазик\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Додајте јазик\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Започнете кога ќе започне состанокот\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Додајте говорен јазик\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Јазик за пребарување...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Јазик и регион\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Споделете податоци за користење\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Апликација\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Дополнителни говорни јазици\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Започнете Anarlog при најавување\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Известувања\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Стоп кога ќе заврши состанокот\"],\"jzmguI\":[\"Средби\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Не се најдени јазици што се совпаѓаат\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Изберете јазик\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Главен јазик\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Додајте јазик\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Започнете кога ќе започне состанокот\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Додајте говорен јазик\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Јазик за пребарување...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Јазик и регион\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Споделете податоци за користење\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Апликација\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Дополнителни говорни јазици\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Започнете Anarlog при најавување\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Известувања\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Стоп кога ќе заврши состанокот\"],\"jzmguI\":[\"Средби\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Не се најдени јазици што се совпаѓаат\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Изберете јазик\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ml/messages.po b/apps/desktop/src/i18n/locales/ml/messages.po index 179a8a840b..eaec8f5932 100644 --- a/apps/desktop/src/i18n/locales/ml/messages.po +++ b/apps/desktop/src/i18n/locales/ml/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ml/messages.ts b/apps/desktop/src/i18n/locales/ml/messages.ts index d9edecc26b..0100a5399f 100644 --- a/apps/desktop/src/i18n/locales/ml/messages.ts +++ b/apps/desktop/src/i18n/locales/ml/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"പ്രധാന ഭാഷ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ഭാഷ ചേർക്കുക\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"മീറ്റിംഗ് ആരംഭിക്കുമ്പോൾ ആരംഭിക്കുക\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"സംസാരിക്കുന്ന ഭാഷ ചേർക്കുക\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ഭാഷ തിരയുക...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ഭാഷയും പ്രദേശവും\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ഉപയോഗ ഡാറ്റ പങ്കിടുക\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ആപ്പ്\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"കൂടുതൽ സംസാരിക്കുന്ന ഭാഷകൾ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ലോഗിൻ ചെയ്യുമ്പോൾ അനർലോഗ് ആരംഭിക്കുക\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"അറിയിപ്പുകൾ\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"മീറ്റിംഗ് അവസാനിക്കുമ്പോൾ നിർത്തുക\"],\"jzmguI\":[\"മീറ്റിംഗുകൾ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"പൊരുത്തമുള്ള ഭാഷകളൊന്നും കണ്ടെത്തിയില്ല\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ഭാഷ തിരഞ്ഞെടുക്കുക\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"പ്രധാന ഭാഷ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ഭാഷ ചേർക്കുക\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"മീറ്റിംഗ് ആരംഭിക്കുമ്പോൾ ആരംഭിക്കുക\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"സംസാരിക്കുന്ന ഭാഷ ചേർക്കുക\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ഭാഷ തിരയുക...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ഭാഷയും പ്രദേശവും\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ഉപയോഗ ഡാറ്റ പങ്കിടുക\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ആപ്പ്\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"കൂടുതൽ സംസാരിക്കുന്ന ഭാഷകൾ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ലോഗിൻ ചെയ്യുമ്പോൾ അനർലോഗ് ആരംഭിക്കുക\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"അറിയിപ്പുകൾ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"മീറ്റിംഗ് അവസാനിക്കുമ്പോൾ നിർത്തുക\"],\"jzmguI\":[\"മീറ്റിംഗുകൾ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"പൊരുത്തമുള്ള ഭാഷകളൊന്നും കണ്ടെത്തിയില്ല\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ഭാഷ തിരഞ്ഞെടുക്കുക\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/mn/messages.po b/apps/desktop/src/i18n/locales/mn/messages.po index 014c076837..affb16063e 100644 --- a/apps/desktop/src/i18n/locales/mn/messages.po +++ b/apps/desktop/src/i18n/locales/mn/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/mn/messages.ts b/apps/desktop/src/i18n/locales/mn/messages.ts index 8a916a6e40..64dfa88702 100644 --- a/apps/desktop/src/i18n/locales/mn/messages.ts +++ b/apps/desktop/src/i18n/locales/mn/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Үндсэн хэл\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Хэл нэмэх\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Уулзалт эхлэхэд эхэл\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ярианы хэл нэмэх\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Хэл хайх...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Хэл ба бүс\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Ашиглалтын өгөгдлийг хуваалцах\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Програм\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Нэмэлт ярианы хэлүүд\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Нэвтрэх үед Anarlog-г эхлүүлнэ үү\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Мэдэгдэл\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Уулзалт дуусахад зогсох\"],\"jzmguI\":[\"Уулзалт\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Тохирох хэл олдсонгүй\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Хэл сонгох\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Үндсэн хэл\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Хэл нэмэх\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Уулзалт эхлэхэд эхэл\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ярианы хэл нэмэх\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Хэл хайх...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Хэл ба бүс\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Ашиглалтын өгөгдлийг хуваалцах\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Програм\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Нэмэлт ярианы хэлүүд\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Нэвтрэх үед Anarlog-г эхлүүлнэ үү\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Мэдэгдэл\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Уулзалт дуусахад зогсох\"],\"jzmguI\":[\"Уулзалт\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Тохирох хэл олдсонгүй\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Хэл сонгох\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/mr/messages.po b/apps/desktop/src/i18n/locales/mr/messages.po index 7b5915bbdd..b59843858d 100644 --- a/apps/desktop/src/i18n/locales/mr/messages.po +++ b/apps/desktop/src/i18n/locales/mr/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/mr/messages.ts b/apps/desktop/src/i18n/locales/mr/messages.ts index d6c212fe9a..306b045fea 100644 --- a/apps/desktop/src/i18n/locales/mr/messages.ts +++ b/apps/desktop/src/i18n/locales/mr/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"भाषा जोडा\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"मीटिंग सुरू झाल्यावर सुरू करा\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"बोलीची भाषा जोडा\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"भाषा शोधा...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"भाषा आणि प्रदेश\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"वापर डेटा सामायिक करा\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ॲप\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"अतिरिक्त बोलल्या जाणाऱ्या भाषा\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"लॉगिनवर Anarlog सुरू करा\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"सूचना\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"मीटिंग संपल्यावर थांबा\"],\"jzmguI\":[\"मीटिंग्ज\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"कोणत्याही जुळणारी भाषा आढळली नाही\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"भाषा निवडा\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"भाषा जोडा\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"मीटिंग सुरू झाल्यावर सुरू करा\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"बोलीची भाषा जोडा\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"भाषा शोधा...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"भाषा आणि प्रदेश\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"वापर डेटा सामायिक करा\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ॲप\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"अतिरिक्त बोलल्या जाणाऱ्या भाषा\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"लॉगिनवर Anarlog सुरू करा\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"सूचना\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"मीटिंग संपल्यावर थांबा\"],\"jzmguI\":[\"मीटिंग्ज\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"कोणत्याही जुळणारी भाषा आढळली नाही\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"भाषा निवडा\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ms/messages.po b/apps/desktop/src/i18n/locales/ms/messages.po index 4a2397c27c..b86534efe3 100644 --- a/apps/desktop/src/i18n/locales/ms/messages.po +++ b/apps/desktop/src/i18n/locales/ms/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ms/messages.ts b/apps/desktop/src/i18n/locales/ms/messages.ts index 941e91fbac..f93f5c7c3a 100644 --- a/apps/desktop/src/i18n/locales/ms/messages.ts +++ b/apps/desktop/src/i18n/locales/ms/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Bahasa utama\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tambah bahasa\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Mulakan apabila mesyuarat bermula\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Tambahkan bahasa pertuturan\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Bahasa carian...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Bahasa & Wilayah\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kongsi data penggunaan\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Apl\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Bahasa pertuturan tambahan\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Mulakan Anarlog semasa log masuk\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Pemberitahuan\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Berhenti apabila mesyuarat tamat\"],\"jzmguI\":[\"Mesyuarat\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Tiada bahasa yang sepadan ditemui\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Pilih bahasa\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Bahasa utama\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tambah bahasa\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Mulakan apabila mesyuarat bermula\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Tambahkan bahasa pertuturan\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Bahasa carian...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Bahasa & Wilayah\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kongsi data penggunaan\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Apl\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Bahasa pertuturan tambahan\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Mulakan Anarlog semasa log masuk\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Pemberitahuan\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Berhenti apabila mesyuarat tamat\"],\"jzmguI\":[\"Mesyuarat\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Tiada bahasa yang sepadan ditemui\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Pilih bahasa\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/mt/messages.po b/apps/desktop/src/i18n/locales/mt/messages.po index b4d8221138..76d242b1c0 100644 --- a/apps/desktop/src/i18n/locales/mt/messages.po +++ b/apps/desktop/src/i18n/locales/mt/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/mt/messages.ts b/apps/desktop/src/i18n/locales/mt/messages.ts index b879da4a58..44b33ad931 100644 --- a/apps/desktop/src/i18n/locales/mt/messages.ts +++ b/apps/desktop/src/i18n/locales/mt/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lingwa prinċipali\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Żid il-lingwa\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Ibda meta tibda l-laqgħa\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Żid il-lingwa mitkellma\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Fittex fil-lingwa...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Lingwa u Reġjun\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Aqsam id-dejta tal-użu\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Lingwi mitkellma addizzjonali\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Ibda Anarlog mal-login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notifiki\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Ieqaf meta tintemm il-laqgħa\"],\"jzmguI\":[\"Laqgħat\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"L-ebda lingwa li taqbel ma nstabet\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Agħżel il-lingwa\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lingwa prinċipali\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Żid il-lingwa\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Ibda meta tibda l-laqgħa\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Żid il-lingwa mitkellma\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Fittex fil-lingwa...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Lingwa u Reġjun\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Aqsam id-dejta tal-użu\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Lingwi mitkellma addizzjonali\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Ibda Anarlog mal-login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notifiki\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Ieqaf meta tintemm il-laqgħa\"],\"jzmguI\":[\"Laqgħat\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"L-ebda lingwa li taqbel ma nstabet\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Agħżel il-lingwa\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/my/messages.po b/apps/desktop/src/i18n/locales/my/messages.po index b2d15913b2..eedb869a0b 100644 --- a/apps/desktop/src/i18n/locales/my/messages.po +++ b/apps/desktop/src/i18n/locales/my/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/my/messages.ts b/apps/desktop/src/i18n/locales/my/messages.ts index 799d6c0143..ee40bc21c3 100644 --- a/apps/desktop/src/i18n/locales/my/messages.ts +++ b/apps/desktop/src/i18n/locales/my/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ပင်မဘာသာစကား\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ဘာသာစကားထည့်ပါ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"အစည်းအဝေးစတင်သည့်အခါ စတင်ပါ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ပြောသောဘာသာစကားကို ထည့်ပါ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ရှာဖွေရန် ဘာသာစကား...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ဘာသာစကားနှင့် ဒေသ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"အသုံးပြုမှုဒေတာကို မျှဝေပါ\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"အက်ပ်\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"နောက်ထပ် ပြောဆိုသော ဘာသာစကားများ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"အကောင့်ဝင်ချိန်တွင် Anarlog စတင်ပါ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"သတိပေးချက်များ\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"အစည်းအဝေးပြီးဆုံးသည့်အခါ ရပ်ပါ\"],\"jzmguI\":[\"အစည်းအဝေးများ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"တူညီသောဘာသာစကားများကိုမတွေ့ပါ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ဘာသာစကားကို ရွေးပါ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ပင်မဘာသာစကား\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ဘာသာစကားထည့်ပါ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"အစည်းအဝေးစတင်သည့်အခါ စတင်ပါ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ပြောသောဘာသာစကားကို ထည့်ပါ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ရှာဖွေရန် ဘာသာစကား...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ဘာသာစကားနှင့် ဒေသ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"အသုံးပြုမှုဒေတာကို မျှဝေပါ\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"အက်ပ်\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"နောက်ထပ် ပြောဆိုသော ဘာသာစကားများ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"အကောင့်ဝင်ချိန်တွင် Anarlog စတင်ပါ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"သတိပေးချက်များ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"အစည်းအဝေးပြီးဆုံးသည့်အခါ ရပ်ပါ\"],\"jzmguI\":[\"အစည်းအဝေးများ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"တူညီသောဘာသာစကားများကိုမတွေ့ပါ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ဘာသာစကားကို ရွေးပါ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ne/messages.po b/apps/desktop/src/i18n/locales/ne/messages.po index 428673826c..75396534d2 100644 --- a/apps/desktop/src/i18n/locales/ne/messages.po +++ b/apps/desktop/src/i18n/locales/ne/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ne/messages.ts b/apps/desktop/src/i18n/locales/ne/messages.ts index a71b8683d7..82255f0459 100644 --- a/apps/desktop/src/i18n/locales/ne/messages.ts +++ b/apps/desktop/src/i18n/locales/ne/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"भाषा थप्नुहोस्\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"बैठक सुरु हुँदा सुरु गर्नुहोस्\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"बोल्ने भाषा थप्नुहोस्\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"भाषा खोज्नुहोस्...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"भाषा र क्षेत्र\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"उपयोग डाटा साझेदारी गर्नुहोस्\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"एप\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"अतिरिक्त बोलिने भाषाहरू\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"लगइनमा Anarlog सुरु गर्नुहोस्\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"सूचनाहरू\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"बैठक समाप्त हुँदा रोक्नुहोस्\"],\"jzmguI\":[\"बैठकहरू\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"कुनै मिल्दो भाषा भेटिएन\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"भाषा चयन गर्नुहोस्\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"भाषा थप्नुहोस्\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"बैठक सुरु हुँदा सुरु गर्नुहोस्\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"बोल्ने भाषा थप्नुहोस्\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"भाषा खोज्नुहोस्...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"भाषा र क्षेत्र\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"उपयोग डाटा साझेदारी गर्नुहोस्\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"एप\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"अतिरिक्त बोलिने भाषाहरू\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"लगइनमा Anarlog सुरु गर्नुहोस्\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"सूचनाहरू\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"बैठक समाप्त हुँदा रोक्नुहोस्\"],\"jzmguI\":[\"बैठकहरू\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"कुनै मिल्दो भाषा भेटिएन\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"भाषा चयन गर्नुहोस्\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/nl/messages.po b/apps/desktop/src/i18n/locales/nl/messages.po index ed1dfc046f..c691b6dcff 100644 --- a/apps/desktop/src/i18n/locales/nl/messages.po +++ b/apps/desktop/src/i18n/locales/nl/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/nl/messages.ts b/apps/desktop/src/i18n/locales/nl/messages.ts index f20121884e..0d8a30fee8 100644 --- a/apps/desktop/src/i18n/locales/nl/messages.ts +++ b/apps/desktop/src/i18n/locales/nl/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hoofdtaal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Taal toevoegen\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start wanneer de vergadering begint\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Gesproken taal toevoegen\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Zoektaal...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Taal en regio\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Gebruiksgegevens delen\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Extra gesproken talen\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Start Anarlog bij inloggen\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Meldingen\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stoppen wanneer de vergadering eindigt\"],\"jzmguI\":[\"Vergaderingen\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Geen overeenkomende talen gevonden\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Selecteer taal\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hoofdtaal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Taal toevoegen\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start wanneer de vergadering begint\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Gesproken taal toevoegen\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Zoektaal...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Taal en regio\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Gebruiksgegevens delen\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Extra gesproken talen\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Start Anarlog bij inloggen\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Meldingen\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stoppen wanneer de vergadering eindigt\"],\"jzmguI\":[\"Vergaderingen\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Geen overeenkomende talen gevonden\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Selecteer taal\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/nn/messages.po b/apps/desktop/src/i18n/locales/nn/messages.po index 4bb696ebd6..8a57e2bfcc 100644 --- a/apps/desktop/src/i18n/locales/nn/messages.po +++ b/apps/desktop/src/i18n/locales/nn/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/nn/messages.ts b/apps/desktop/src/i18n/locales/nn/messages.ts index 0e8cc4b11c..2a082c8aae 100644 --- a/apps/desktop/src/i18n/locales/nn/messages.ts +++ b/apps/desktop/src/i18n/locales/nn/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hovedspråk\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Legg til språk\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start når møtet begynner\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Legg til talespråk\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Søkespråk...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Språk og region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Del bruksdata\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Flere talespråk\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Start Anarlog ved pålogging\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Varsler\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stopp når møtet avsluttes\"],\"jzmguI\":[\"Møter\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Fant ingen samsvarende språk\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Velg språk\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hovedspråk\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Legg til språk\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start når møtet begynner\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Legg til talespråk\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Søkespråk...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Språk og region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Del bruksdata\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Flere talespråk\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Start Anarlog ved pålogging\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Varsler\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stopp når møtet avsluttes\"],\"jzmguI\":[\"Møter\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Fant ingen samsvarende språk\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Velg språk\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/no/messages.po b/apps/desktop/src/i18n/locales/no/messages.po index d64988c028..c5777a5069 100644 --- a/apps/desktop/src/i18n/locales/no/messages.po +++ b/apps/desktop/src/i18n/locales/no/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/no/messages.ts b/apps/desktop/src/i18n/locales/no/messages.ts index 0e8cc4b11c..2a082c8aae 100644 --- a/apps/desktop/src/i18n/locales/no/messages.ts +++ b/apps/desktop/src/i18n/locales/no/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hovedspråk\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Legg til språk\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start når møtet begynner\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Legg til talespråk\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Søkespråk...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Språk og region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Del bruksdata\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Flere talespråk\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Start Anarlog ved pålogging\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Varsler\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stopp når møtet avsluttes\"],\"jzmguI\":[\"Møter\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Fant ingen samsvarende språk\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Velg språk\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hovedspråk\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Legg til språk\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start når møtet begynner\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Legg til talespråk\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Søkespråk...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Språk og region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Del bruksdata\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Flere talespråk\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Start Anarlog ved pålogging\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Varsler\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stopp når møtet avsluttes\"],\"jzmguI\":[\"Møter\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Fant ingen samsvarende språk\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Velg språk\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ny/messages.po b/apps/desktop/src/i18n/locales/ny/messages.po index bd98274530..e9762231d7 100644 --- a/apps/desktop/src/i18n/locales/ny/messages.po +++ b/apps/desktop/src/i18n/locales/ny/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ny/messages.ts b/apps/desktop/src/i18n/locales/ny/messages.ts index 1f01c06617..ca6fc54b82 100644 --- a/apps/desktop/src/i18n/locales/ny/messages.ts +++ b/apps/desktop/src/i18n/locales/ny/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Chiyankhulo chachikulu\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Onjezani chilankhulo\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Yambani msonkhano ukayamba\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Onjezani chilankhulo\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Sakani chilankhulo...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Chinenero & Chigawo\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Gawani zogwiritsa ntchito\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Mapulogalamu\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Zilankhulo zina zoyankhulidwa\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Yambitsani Anarlog polowera\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Zidziwitso\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Imani msonkhano ukatha\"],\"jzmguI\":[\"Misonkhano\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Palibe zilankhulo zofananira zomwe zapezeka\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Sankhani chinenero\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Chiyankhulo chachikulu\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Onjezani chilankhulo\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Yambani msonkhano ukayamba\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Onjezani chilankhulo\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Sakani chilankhulo...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Chinenero & Chigawo\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Gawani zogwiritsa ntchito\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Mapulogalamu\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Zilankhulo zina zoyankhulidwa\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Yambitsani Anarlog polowera\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Zidziwitso\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Imani msonkhano ukatha\"],\"jzmguI\":[\"Misonkhano\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Palibe zilankhulo zofananira zomwe zapezeka\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Sankhani chinenero\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/oc/messages.po b/apps/desktop/src/i18n/locales/oc/messages.po index 8946fc6986..90991ede1a 100644 --- a/apps/desktop/src/i18n/locales/oc/messages.po +++ b/apps/desktop/src/i18n/locales/oc/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/oc/messages.ts b/apps/desktop/src/i18n/locales/oc/messages.ts index 9f09716684..7bef61799d 100644 --- a/apps/desktop/src/i18n/locales/oc/messages.ts +++ b/apps/desktop/src/i18n/locales/oc/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lenga principala\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Apondre la lenga\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Aviar quand la reünion comença\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Apondètz la lenga parlada\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Cercar lenga...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Lenga & Region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Partejar las donadas d'utilizacion\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplicacion\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Lengas parladas suplementàrias\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Aviar l'Anarlog al moment de la connexion\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificacions\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"S'arrestar quand la reünion s'acaba\"],\"jzmguI\":[\"Reünions\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Cap de lenga correspondenta pas trobada\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Seleccionar la lenga\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lenga principala\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Apondre la lenga\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Aviar quand la reünion comença\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Apondètz la lenga parlada\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Cercar lenga...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Lenga & Region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Partejar las donadas d'utilizacion\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplicacion\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Lengas parladas suplementàrias\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Aviar l'Anarlog al moment de la connexion\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificacions\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"S'arrestar quand la reünion s'acaba\"],\"jzmguI\":[\"Reünions\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Cap de lenga correspondenta pas trobada\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Seleccionar la lenga\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/or/messages.po b/apps/desktop/src/i18n/locales/or/messages.po index e7eb10637b..13b706c0df 100644 --- a/apps/desktop/src/i18n/locales/or/messages.po +++ b/apps/desktop/src/i18n/locales/or/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/or/messages.ts b/apps/desktop/src/i18n/locales/or/messages.ts index d40a1cadf9..303e9722e6 100644 --- a/apps/desktop/src/i18n/locales/or/messages.ts +++ b/apps/desktop/src/i18n/locales/or/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ମୁଖ୍ୟ ଭାଷା |\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ଭାଷା ଯୋଡନ୍ତୁ |\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ସଭା ଆରମ୍ଭ ହେବା ପରେ ଆରମ୍ଭ କରନ୍ତୁ |\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"କଥିତ ଭାଷା ଯୋଡନ୍ତୁ |\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ସନ୍ଧାନ ଭାଷା ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ଭାଷା ଏବଂ ଅଞ୍ଚଳ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ବ୍ୟବହାର ତଥ୍ୟ ଅଂଶୀଦାର କରନ୍ତୁ |\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ଆପ୍\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ଅତିରିକ୍ତ କଥିତ ଭାଷା |\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ଲଗଇନ୍ ରେ ଅନାର୍ଲଗ୍ ଆରମ୍ଭ କରନ୍ତୁ |\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"ବିଜ୍ଞପ୍ତିଗୁଡିକ\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ସଭା ସମାପ୍ତ ହେବା ପରେ ବନ୍ଦ କର |\"],\"jzmguI\":[\"ମିଟିଂ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"କ No ଣସି ମେଳକ ଭାଷା ମିଳିଲା ନାହିଁ |\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ଭାଷା ଚୟନ କରନ୍ତୁ |\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ମୁଖ୍ୟ ଭାଷା |\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ଭାଷା ଯୋଡନ୍ତୁ |\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ସଭା ଆରମ୍ଭ ହେବା ପରେ ଆରମ୍ଭ କରନ୍ତୁ |\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"କଥିତ ଭାଷା ଯୋଡନ୍ତୁ |\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ସନ୍ଧାନ ଭାଷା ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ଭାଷା ଏବଂ ଅଞ୍ଚଳ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ବ୍ୟବହାର ତଥ୍ୟ ଅଂଶୀଦାର କରନ୍ତୁ |\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ଆପ୍\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ଅତିରିକ୍ତ କଥିତ ଭାଷା |\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ଲଗଇନ୍ ରେ ଅନାର୍ଲଗ୍ ଆରମ୍ଭ କରନ୍ତୁ |\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"ବିଜ୍ଞପ୍ତିଗୁଡିକ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ସଭା ସମାପ୍ତ ହେବା ପରେ ବନ୍ଦ କର |\"],\"jzmguI\":[\"ମିଟିଂ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"କ No ଣସି ମେଳକ ଭାଷା ମିଳିଲା ନାହିଁ |\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ଭାଷା ଚୟନ କରନ୍ତୁ |\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/pa/messages.po b/apps/desktop/src/i18n/locales/pa/messages.po index 0a61399ae4..85fb3ffd7d 100644 --- a/apps/desktop/src/i18n/locales/pa/messages.po +++ b/apps/desktop/src/i18n/locales/pa/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/pa/messages.ts b/apps/desktop/src/i18n/locales/pa/messages.ts index b3cf380878..f61f7a52c6 100644 --- a/apps/desktop/src/i18n/locales/pa/messages.ts +++ b/apps/desktop/src/i18n/locales/pa/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ਮੁੱਖ ਭਾਸ਼ਾ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ਭਾਸ਼ਾ ਜੋੜੋ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ਮੀਟਿੰਗ ਸ਼ੁਰੂ ਹੋਣ 'ਤੇ ਸ਼ੁਰੂ ਕਰੋ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ਬੋਲੀ ਜਾਣ ਵਾਲੀ ਭਾਸ਼ਾ ਸ਼ਾਮਲ ਕਰੋ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ਭਾਸ਼ਾ ਖੋਜੋ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ਭਾਸ਼ਾ ਅਤੇ ਖੇਤਰ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ਵਰਤੋਂ ਡੇਟਾ ਸਾਂਝਾ ਕਰੋ\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ਐਪ\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ਵਧੀਕ ਬੋਲੀਆਂ ਜਾਣ ਵਾਲੀਆਂ ਭਾਸ਼ਾਵਾਂ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ਲੌਗਇਨ 'ਤੇ ਐਨਾਰਲੌਗ ਸ਼ੁਰੂ ਕਰੋ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"ਸੂਚਨਾਵਾਂ\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ਮੀਟਿੰਗ ਖਤਮ ਹੋਣ 'ਤੇ ਰੋਕੋ\"],\"jzmguI\":[\"ਮੀਟਿੰਗਾਂ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ਕੋਈ ਮੇਲ ਖਾਂਦੀ ਭਾਸ਼ਾ ਨਹੀਂ ਮਿਲੀ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ਭਾਸ਼ਾ ਚੁਣੋ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ਮੁੱਖ ਭਾਸ਼ਾ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ਭਾਸ਼ਾ ਜੋੜੋ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ਮੀਟਿੰਗ ਸ਼ੁਰੂ ਹੋਣ 'ਤੇ ਸ਼ੁਰੂ ਕਰੋ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ਬੋਲੀ ਜਾਣ ਵਾਲੀ ਭਾਸ਼ਾ ਸ਼ਾਮਲ ਕਰੋ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ਭਾਸ਼ਾ ਖੋਜੋ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ਭਾਸ਼ਾ ਅਤੇ ਖੇਤਰ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ਵਰਤੋਂ ਡੇਟਾ ਸਾਂਝਾ ਕਰੋ\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ਐਪ\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ਵਧੀਕ ਬੋਲੀਆਂ ਜਾਣ ਵਾਲੀਆਂ ਭਾਸ਼ਾਵਾਂ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ਲੌਗਇਨ 'ਤੇ ਐਨਾਰਲੌਗ ਸ਼ੁਰੂ ਕਰੋ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"ਸੂਚਨਾਵਾਂ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ਮੀਟਿੰਗ ਖਤਮ ਹੋਣ 'ਤੇ ਰੋਕੋ\"],\"jzmguI\":[\"ਮੀਟਿੰਗਾਂ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ਕੋਈ ਮੇਲ ਖਾਂਦੀ ਭਾਸ਼ਾ ਨਹੀਂ ਮਿਲੀ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ਭਾਸ਼ਾ ਚੁਣੋ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/pl/messages.po b/apps/desktop/src/i18n/locales/pl/messages.po index 91c0088824..0c83d2bb87 100644 --- a/apps/desktop/src/i18n/locales/pl/messages.po +++ b/apps/desktop/src/i18n/locales/pl/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/pl/messages.ts b/apps/desktop/src/i18n/locales/pl/messages.ts index 3bda6aaff4..6ceb0f0e1e 100644 --- a/apps/desktop/src/i18n/locales/pl/messages.ts +++ b/apps/desktop/src/i18n/locales/pl/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Język główny\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dodaj język\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Rozpocznij w momencie rozpoczęcia spotkania\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Dodaj język mówiony\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Wyszukaj język...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Język i region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Udostępnij dane o użytkowaniu\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikacja\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Dodatkowe języki mówione\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Uruchom Anarlog przy logowaniu\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Powiadomienia\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Zatrzymaj po zakończeniu spotkania\"],\"jzmguI\":[\"Spotkania\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nie znaleziono pasujących języków\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Wybierz język\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Język główny\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dodaj język\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Rozpocznij w momencie rozpoczęcia spotkania\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Dodaj język mówiony\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Wyszukaj język...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Język i region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Udostępnij dane o użytkowaniu\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikacja\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Dodatkowe języki mówione\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Uruchom Anarlog przy logowaniu\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Powiadomienia\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Zatrzymaj po zakończeniu spotkania\"],\"jzmguI\":[\"Spotkania\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nie znaleziono pasujących języków\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Wybierz język\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ps/messages.po b/apps/desktop/src/i18n/locales/ps/messages.po index 99226aa2c2..b263a36cb1 100644 --- a/apps/desktop/src/i18n/locales/ps/messages.po +++ b/apps/desktop/src/i18n/locales/ps/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ps/messages.ts b/apps/desktop/src/i18n/locales/ps/messages.ts index 4d4772410a..b2199007d5 100644 --- a/apps/desktop/src/i18n/locales/ps/messages.ts +++ b/apps/desktop/src/i18n/locales/ps/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"اصلي ژبه\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ژبه اضافه کړئ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"کله چې ناسته پیل شي پیل کړئ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"د ویل شوي ژبه اضافه کړئ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"د ژبې لټون...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ژبه او سیمه\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"د کارونې ډاټا شریک کړئ\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ایپ\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"اضافي خبرې شوي ژبې\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"په ننوتلو کې انارلوګ پیل کړئ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"اطلاعات\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"کله چې ناسته پای ته ورسیږي ودروئ\"],\"jzmguI\":[\"غونډې\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"هیڅ ورته ژبه ونه موندل شوه\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ژبه وټاکئ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"اصلي ژبه\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ژبه اضافه کړئ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"کله چې ناسته پیل شي پیل کړئ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"د ویل شوي ژبه اضافه کړئ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"د ژبې لټون...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ژبه او سیمه\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"د کارونې ډاټا شریک کړئ\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ایپ\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"اضافي خبرې شوي ژبې\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"په ننوتلو کې انارلوګ پیل کړئ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"اطلاعات\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"کله چې ناسته پای ته ورسیږي ودروئ\"],\"jzmguI\":[\"غونډې\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"هیڅ ورته ژبه ونه موندل شوه\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ژبه وټاکئ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/pt/messages.po b/apps/desktop/src/i18n/locales/pt/messages.po index 755e2c7af0..b4a51945c3 100644 --- a/apps/desktop/src/i18n/locales/pt/messages.po +++ b/apps/desktop/src/i18n/locales/pt/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/pt/messages.ts b/apps/desktop/src/i18n/locales/pt/messages.ts index a457ce162b..e5c7170fd4 100644 --- a/apps/desktop/src/i18n/locales/pt/messages.ts +++ b/apps/desktop/src/i18n/locales/pt/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Idioma principal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Adicionar idioma\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Iniciar quando a reunião começar\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Adicionar idioma falado\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Pesquisar idioma...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Idioma e região\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Compartilhar dados de uso\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplicativo\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Idiomas falados adicionais\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Iniciar Anarlog ao entrar\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificações\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Parar quando a reunião terminar\"],\"jzmguI\":[\"Reuniões\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nenhum idioma correspondente encontrado\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Selecionar idioma\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Idioma principal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Adicionar idioma\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Iniciar quando a reunião começar\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Adicionar idioma falado\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Pesquisar idioma...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Idioma e região\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Compartilhar dados de uso\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplicativo\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Idiomas falados adicionais\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Iniciar Anarlog ao entrar\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificações\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Parar quando a reunião terminar\"],\"jzmguI\":[\"Reuniões\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nenhum idioma correspondente encontrado\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Selecionar idioma\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ro/messages.po b/apps/desktop/src/i18n/locales/ro/messages.po index 51cd972736..e3f9bcb2cc 100644 --- a/apps/desktop/src/i18n/locales/ro/messages.po +++ b/apps/desktop/src/i18n/locales/ro/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ro/messages.ts b/apps/desktop/src/i18n/locales/ro/messages.ts index d8a50d9b24..3339bee730 100644 --- a/apps/desktop/src/i18n/locales/ro/messages.ts +++ b/apps/desktop/src/i18n/locales/ro/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Limba principală\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Adăugați limba\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Începe când începe întâlnirea\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Adăugați limba vorbită\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Căutați limba...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Limbă și regiune\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Partajați datele de utilizare\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplicație\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Limbi vorbite suplimentare\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Porniți Anarlog la conectare\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificări\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Opriți când întâlnirea se încheie\"],\"jzmguI\":[\"Întâlniri\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nu s-au găsit limbi care se potrivesc\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Selectați limba\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Limba principală\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Adăugați limba\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Începe când începe întâlnirea\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Adăugați limba vorbită\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Căutați limba...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Limbă și regiune\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Partajați datele de utilizare\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplicație\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Limbi vorbite suplimentare\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Porniți Anarlog la conectare\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificări\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Opriți când întâlnirea se încheie\"],\"jzmguI\":[\"Întâlniri\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nu s-au găsit limbi care se potrivesc\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Selectați limba\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ru/messages.po b/apps/desktop/src/i18n/locales/ru/messages.po index 30553d2e25..2866ea9242 100644 --- a/apps/desktop/src/i18n/locales/ru/messages.po +++ b/apps/desktop/src/i18n/locales/ru/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ru/messages.ts b/apps/desktop/src/i18n/locales/ru/messages.ts index 9fbcce4211..6ef8a768d0 100644 --- a/apps/desktop/src/i18n/locales/ru/messages.ts +++ b/apps/desktop/src/i18n/locales/ru/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Основной язык\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Добавить язык\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Начать, когда начнется собрание\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Добавить разговорный язык\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Язык поиска...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Язык и регион\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Поделиться данными об использовании\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Приложение\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Дополнительные разговорные языки\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Запускать Anarlog при входе в систему\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Уведомления\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Остановиться, когда встреча закончится\"],\"jzmguI\":[\"Встречи\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Подходящие языки не найдены\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Выбрать язык\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Основной язык\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Добавить язык\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Начать, когда начнется собрание\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Добавить разговорный язык\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Язык поиска...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Язык и регион\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Поделиться данными об использовании\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Приложение\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Дополнительные разговорные языки\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Запускать Anarlog при входе в систему\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Уведомления\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Остановиться, когда встреча закончится\"],\"jzmguI\":[\"Встречи\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Подходящие языки не найдены\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Выбрать язык\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sa/messages.po b/apps/desktop/src/i18n/locales/sa/messages.po index d4cef7e707..4bc7d495c8 100644 --- a/apps/desktop/src/i18n/locales/sa/messages.po +++ b/apps/desktop/src/i18n/locales/sa/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sa/messages.ts b/apps/desktop/src/i18n/locales/sa/messages.ts index 4c64f28bc6..966bb9a3d7 100644 --- a/apps/desktop/src/i18n/locales/sa/messages.ts +++ b/apps/desktop/src/i18n/locales/sa/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्यभाषा\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"भाषा योजयतु\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"समागमस्य आरम्भे आरभत\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"भाषितभाषा योजयतु\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"भाषां अन्वेष्टुम्...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"भाषा एवं क्षेत्र\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"उपयोगदत्तांशं साझां कुर्वन्तु\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"अनुप्रयोग\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"अतिरिक्तभाष्यभाषा\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"प्रवेशसमये Anarlog आरभत\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"सूचना\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"समागमस्य समाप्तेः समये स्थगयतु\"],\"jzmguI\":[\"समागमाः\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"न सङ्गतभाषा लभ्यते\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"भाषां चिनोतु\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्यभाषा\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"भाषा योजयतु\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"समागमस्य आरम्भे आरभत\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"भाषितभाषा योजयतु\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"भाषां अन्वेष्टुम्...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"भाषा एवं क्षेत्र\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"उपयोगदत्तांशं साझां कुर्वन्तु\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"अनुप्रयोग\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"अतिरिक्तभाष्यभाषा\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"प्रवेशसमये Anarlog आरभत\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"सूचना\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"समागमस्य समाप्तेः समये स्थगयतु\"],\"jzmguI\":[\"समागमाः\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"न सङ्गतभाषा लभ्यते\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"भाषां चिनोतु\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sd/messages.po b/apps/desktop/src/i18n/locales/sd/messages.po index 9110e32602..a9c1e7b525 100644 --- a/apps/desktop/src/i18n/locales/sd/messages.po +++ b/apps/desktop/src/i18n/locales/sd/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sd/messages.ts b/apps/desktop/src/i18n/locales/sd/messages.ts index b28e8ba750..9ded63270d 100644 --- a/apps/desktop/src/i18n/locales/sd/messages.ts +++ b/apps/desktop/src/i18n/locales/sd/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"مکيه ٻولي\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ٻولي شامل ڪريو\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"شروع ڪريو جڏهن ميٽنگ شروع ٿئي\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ڳالهائيندڙ ٻولي شامل ڪريو\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ٻولي ڳولھيو...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ٻولي ۽ علائقو\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"استعمال ڊيٽا حصيداري ڪريو\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ايپ\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"اضافي ڳالهائيندڙ ٻوليون\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"لاگ ان تي Anarlog شروع ڪريو\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"اطلاعات\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"جڏهن ميٽنگ ختم ٿئي ته روڪيو\"],\"jzmguI\":[\"ملاقات\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ڪابه ملندڙ ٻوليون نه مليون\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ٻولي چونڊيو\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"مکيه ٻولي\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ٻولي شامل ڪريو\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"شروع ڪريو جڏهن ميٽنگ شروع ٿئي\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ڳالهائيندڙ ٻولي شامل ڪريو\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ٻولي ڳولھيو...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ٻولي ۽ علائقو\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"استعمال ڊيٽا حصيداري ڪريو\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ايپ\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"اضافي ڳالهائيندڙ ٻوليون\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"لاگ ان تي Anarlog شروع ڪريو\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"اطلاعات\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"جڏهن ميٽنگ ختم ٿئي ته روڪيو\"],\"jzmguI\":[\"ملاقات\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ڪابه ملندڙ ٻوليون نه مليون\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ٻولي چونڊيو\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/si/messages.po b/apps/desktop/src/i18n/locales/si/messages.po index 8df368d2b0..e20991999c 100644 --- a/apps/desktop/src/i18n/locales/si/messages.po +++ b/apps/desktop/src/i18n/locales/si/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/si/messages.ts b/apps/desktop/src/i18n/locales/si/messages.ts index 1cc16e5adb..ba46520144 100644 --- a/apps/desktop/src/i18n/locales/si/messages.ts +++ b/apps/desktop/src/i18n/locales/si/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ප්‍රධාන භාෂාව\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"භාෂාව එක් කරන්න\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"රැස්වීම ආරම්භ වන විට ආරම්භ කරන්න\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"කථන භාෂාව එක් කරන්න\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"සෙවුම් භාෂාව...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"භාෂාව සහ කලාපය\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"භාවිතා දත්ත බෙදා ගන්න\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"යෙදුම\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"අමතර කථන භාෂා\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"පිවිසීමේදී Anarlog ආරම්භ කරන්න\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"දැනුම්දීම්\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"රැස්වීම අවසන් වූ විට නවත්වන්න\"],\"jzmguI\":[\"රැස්වීම්\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ගැළපෙන භාෂා කිසිවක් හමු නොවීය\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"භාෂාව තෝරන්න\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ප්‍රධාන භාෂාව\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"භාෂාව එක් කරන්න\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"රැස්වීම ආරම්භ වන විට ආරම්භ කරන්න\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"කථන භාෂාව එක් කරන්න\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"සෙවුම් භාෂාව...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"භාෂාව සහ කලාපය\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"භාවිතා දත්ත බෙදා ගන්න\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"යෙදුම\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"අමතර කථන භාෂා\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"පිවිසීමේදී Anarlog ආරම්භ කරන්න\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"දැනුම්දීම්\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"රැස්වීම අවසන් වූ විට නවත්වන්න\"],\"jzmguI\":[\"රැස්වීම්\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ගැළපෙන භාෂා කිසිවක් හමු නොවීය\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"භාෂාව තෝරන්න\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sk/messages.po b/apps/desktop/src/i18n/locales/sk/messages.po index a5a45097da..f7453556c8 100644 --- a/apps/desktop/src/i18n/locales/sk/messages.po +++ b/apps/desktop/src/i18n/locales/sk/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sk/messages.ts b/apps/desktop/src/i18n/locales/sk/messages.ts index f45804ea8e..5530457689 100644 --- a/apps/desktop/src/i18n/locales/sk/messages.ts +++ b/apps/desktop/src/i18n/locales/sk/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hlavný jazyk\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Pridať jazyk\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Začať, keď sa schôdza začína\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Pridať hovorený jazyk\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Jazyk vyhľadávania...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Jazyk a oblasť\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Zdieľať údaje o používaní\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikácia\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ďalšie hovorené jazyky\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Spustite Anarlog pri prihlásení\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Upozornenia\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Zastavte, keď sa stretnutie skončí\"],\"jzmguI\":[\"Stretnutia\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nenašli sa žiadne zodpovedajúce jazyky\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Vyberte jazyk\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hlavný jazyk\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Pridať jazyk\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Začať, keď sa schôdza začína\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Pridať hovorený jazyk\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Jazyk vyhľadávania...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Jazyk a oblasť\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Zdieľať údaje o používaní\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikácia\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ďalšie hovorené jazyky\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Spustite Anarlog pri prihlásení\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Upozornenia\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Zastavte, keď sa stretnutie skončí\"],\"jzmguI\":[\"Stretnutia\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nenašli sa žiadne zodpovedajúce jazyky\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Vyberte jazyk\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sl/messages.po b/apps/desktop/src/i18n/locales/sl/messages.po index fd75f6838b..408a0ae9e0 100644 --- a/apps/desktop/src/i18n/locales/sl/messages.po +++ b/apps/desktop/src/i18n/locales/sl/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sl/messages.ts b/apps/desktop/src/i18n/locales/sl/messages.ts index 0bbe7131e6..392107ff74 100644 --- a/apps/desktop/src/i18n/locales/sl/messages.ts +++ b/apps/desktop/src/i18n/locales/sl/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Glavni jezik\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dodaj jezik\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Začni, ko se sestanek začne\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Dodaj govorjeni jezik\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Jezik iskanja ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Jezik in regija\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Skupna raba podatkov o uporabi\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikacija\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Dodatni govorjeni jeziki\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Zaženi Anarlog ob prijavi\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Obvestila\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Ustavite se, ko se sestanek konča\"],\"jzmguI\":[\"Sestanki\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ni ustreznih jezikov\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Izberite jezik\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Glavni jezik\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dodaj jezik\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Začni, ko se sestanek začne\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Dodaj govorjeni jezik\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Jezik iskanja ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Jezik in regija\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Skupna raba podatkov o uporabi\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikacija\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Dodatni govorjeni jeziki\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Zaženi Anarlog ob prijavi\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Obvestila\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Ustavite se, ko se sestanek konča\"],\"jzmguI\":[\"Sestanki\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ni ustreznih jezikov\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Izberite jezik\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sn/messages.po b/apps/desktop/src/i18n/locales/sn/messages.po index 84f82b364e..37d56ea381 100644 --- a/apps/desktop/src/i18n/locales/sn/messages.po +++ b/apps/desktop/src/i18n/locales/sn/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sn/messages.ts b/apps/desktop/src/i18n/locales/sn/messages.ts index aafe8c96e7..6bbd00aecd 100644 --- a/apps/desktop/src/i18n/locales/sn/messages.ts +++ b/apps/desktop/src/i18n/locales/sn/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Mutauro mukuru\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Wedzera mutauro\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Tanga kana musangano watanga\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Wedzera mutauro unotaurwa\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Tsvaga mutauro...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Mutauro & Nharaunda\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Goverana data rekushandisa\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Mitauro inowedzerwa\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Tanga Anarlog paunopinda\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Zviziviso\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Mira kana musangano wapera\"],\"jzmguI\":[\"Misangano\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Hapana mitauro inoenderana yawanikwa\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Sarudza mutauro\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Mutauro mukuru\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Wedzera mutauro\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Tanga kana musangano watanga\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Wedzera mutauro unotaurwa\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Tsvaga mutauro...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Mutauro & Nharaunda\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Goverana data rekushandisa\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Mitauro inowedzerwa\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Tanga Anarlog paunopinda\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Zviziviso\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Mira kana musangano wapera\"],\"jzmguI\":[\"Misangano\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Hapana mitauro inoenderana yawanikwa\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Sarudza mutauro\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/so/messages.po b/apps/desktop/src/i18n/locales/so/messages.po index f4280e6abc..2e49828040 100644 --- a/apps/desktop/src/i18n/locales/so/messages.po +++ b/apps/desktop/src/i18n/locales/so/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/so/messages.ts b/apps/desktop/src/i18n/locales/so/messages.ts index 6abadbb10b..ca3d0362f9 100644 --- a/apps/desktop/src/i18n/locales/so/messages.ts +++ b/apps/desktop/src/i18n/locales/so/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Luqadda ugu weyn\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Kudar luqadda\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Bilow marka kulanku bilaabmo\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ku dar luqadda lagu hadlo\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Luqadda raadi...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Luqadda & Gobolka\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"La wadaag xogta isticmaalka\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App-ka\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Afafka lagu hadlo dheeraadka ah\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Bilow Anarlog marka la soo galo\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Ogaysiisyo\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Jooji marka kulanku dhamaado\"],\"jzmguI\":[\"Kulamada\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Lama helin luuqado u dhigma\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Dooro luqadda\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Luqadda ugu weyn\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Kudar luqadda\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Bilow marka kulanku bilaabmo\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ku dar luqadda lagu hadlo\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Luqadda raadi...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Luqadda & Gobolka\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"La wadaag xogta isticmaalka\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App-ka\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Afafka lagu hadlo dheeraadka ah\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Bilow Anarlog marka la soo galo\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Ogaysiisyo\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Jooji marka kulanku dhamaado\"],\"jzmguI\":[\"Kulamada\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Lama helin luuqado u dhigma\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Dooro luqadda\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sq/messages.po b/apps/desktop/src/i18n/locales/sq/messages.po index 9716f9cf69..f29b597dc9 100644 --- a/apps/desktop/src/i18n/locales/sq/messages.po +++ b/apps/desktop/src/i18n/locales/sq/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sq/messages.ts b/apps/desktop/src/i18n/locales/sq/messages.ts index 9ed0d88572..abf7ba4879 100644 --- a/apps/desktop/src/i18n/locales/sq/messages.ts +++ b/apps/desktop/src/i18n/locales/sq/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Gjuha kryesore\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Shto gjuhën\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Fillo kur të fillojë takimi\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Shto gjuhën e folur\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Kërko gjuhën...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Gjuha dhe rajoni\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Ndani të dhënat e përdorimit\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikacioni\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Gjuhë të tjera të folura\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Filloni Anarlog në hyrje\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Njoftimet\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Ndalo kur të përfundojë takimi\"],\"jzmguI\":[\"Takime\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nuk u gjet asnjë gjuhë që përputhet\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Zgjidh gjuhën\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Gjuha kryesore\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Shto gjuhën\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Fillo kur të fillojë takimi\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Shto gjuhën e folur\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Kërko gjuhën...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Gjuha dhe rajoni\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Ndani të dhënat e përdorimit\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikacioni\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Gjuhë të tjera të folura\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Filloni Anarlog në hyrje\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Njoftimet\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Ndalo kur të përfundojë takimi\"],\"jzmguI\":[\"Takime\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nuk u gjet asnjë gjuhë që përputhet\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Zgjidh gjuhën\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sr/messages.po b/apps/desktop/src/i18n/locales/sr/messages.po index ce9c860fc7..1b8215662f 100644 --- a/apps/desktop/src/i18n/locales/sr/messages.po +++ b/apps/desktop/src/i18n/locales/sr/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sr/messages.ts b/apps/desktop/src/i18n/locales/sr/messages.ts index 7b1e154da1..72449a643a 100644 --- a/apps/desktop/src/i18n/locales/sr/messages.ts +++ b/apps/desktop/src/i18n/locales/sr/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Главни језик\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Додајте језик\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Почните када састанак почне\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Додајте говорни језик\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Претражи језик...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Језик и регион\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Делите податке о коришћењу\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Апп\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Додатни говорни језици\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Покрените Анарлог приликом пријављивања\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Обавештења\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Зауставите се када се састанак заврши\"],\"jzmguI\":[\"Састанци\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Није пронађен ниједан одговарајући језик\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Изаберите језик\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Главни језик\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Додајте језик\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Почните када састанак почне\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Додајте говорни језик\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Претражи језик...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Језик и регион\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Делите податке о коришћењу\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Апп\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Додатни говорни језици\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Покрените Анарлог приликом пријављивања\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Обавештења\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Зауставите се када се састанак заврши\"],\"jzmguI\":[\"Састанци\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Није пронађен ниједан одговарајући језик\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Изаберите језик\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/su/messages.po b/apps/desktop/src/i18n/locales/su/messages.po index 7ab3e756be..b9b1c05f95 100644 --- a/apps/desktop/src/i18n/locales/su/messages.po +++ b/apps/desktop/src/i18n/locales/su/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/su/messages.ts b/apps/desktop/src/i18n/locales/su/messages.ts index f241090e75..00dd20d34f 100644 --- a/apps/desktop/src/i18n/locales/su/messages.ts +++ b/apps/desktop/src/i18n/locales/su/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Basa utama\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tambahkeun basa\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Mimitian nalika rapat dimimitian\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Tambahkeun basa lisan\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Teangan basa...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Basa & Wewengkon\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Bagikeun data pamakean\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikasi\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Basa lisan tambahan\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Mimitian Anarlog nalika asup\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Bewara\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Eureun nalika rapat réngsé\"],\"jzmguI\":[\"Rapat\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Teu kapanggih basa nu cocog\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Pilih basa\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Basa utama\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tambahkeun basa\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Mimitian nalika rapat dimimitian\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Tambahkeun basa lisan\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Teangan basa...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Basa & Wewengkon\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Bagikeun data pamakean\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikasi\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Basa lisan tambahan\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Mimitian Anarlog nalika asup\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Bewara\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Eureun nalika rapat réngsé\"],\"jzmguI\":[\"Rapat\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Teu kapanggih basa nu cocog\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Pilih basa\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sv/messages.po b/apps/desktop/src/i18n/locales/sv/messages.po index 4bf7934938..bc384094d8 100644 --- a/apps/desktop/src/i18n/locales/sv/messages.po +++ b/apps/desktop/src/i18n/locales/sv/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sv/messages.ts b/apps/desktop/src/i18n/locales/sv/messages.ts index 44a7d6184c..7b66d1d70b 100644 --- a/apps/desktop/src/i18n/locales/sv/messages.ts +++ b/apps/desktop/src/i18n/locales/sv/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Huvudspråk\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Lägg till språk\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Börja när mötet börjar\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Lägg till talat språk\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Sökspråk...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Språk och region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Dela användningsdata\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ytterligare talade språk\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Starta Anarlog vid inloggning\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Aviseringar\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stoppa när mötet slutar\"],\"jzmguI\":[\"Möten\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Inga matchande språk hittades\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Välj språk\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Huvudspråk\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Lägg till språk\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Börja när mötet börjar\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Lägg till talat språk\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Sökspråk...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Språk och region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Dela användningsdata\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ytterligare talade språk\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Starta Anarlog vid inloggning\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Aviseringar\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stoppa när mötet slutar\"],\"jzmguI\":[\"Möten\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Inga matchande språk hittades\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Välj språk\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sw/messages.po b/apps/desktop/src/i18n/locales/sw/messages.po index a17e3c1014..656830ef13 100644 --- a/apps/desktop/src/i18n/locales/sw/messages.po +++ b/apps/desktop/src/i18n/locales/sw/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sw/messages.ts b/apps/desktop/src/i18n/locales/sw/messages.ts index 02d8d7ae16..66830075ee 100644 --- a/apps/desktop/src/i18n/locales/sw/messages.ts +++ b/apps/desktop/src/i18n/locales/sw/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lugha kuu\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ongeza lugha\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Anza mkutano unapoanza\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ongeza lugha inayozungumzwa\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Tafuta lugha...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Lugha na Eneo\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Shiriki data ya matumizi\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Programu\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Lugha za ziada zinazozungumzwa\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Anzisha Anarlog wakati wa kuingia\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Arifa\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Simama mkutano unapoisha\"],\"jzmguI\":[\"Mikutano\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Hakuna lugha zinazolingana zilizopatikana\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Chagua lugha\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lugha kuu\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ongeza lugha\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Anza mkutano unapoanza\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ongeza lugha inayozungumzwa\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Tafuta lugha...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Lugha na Eneo\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Shiriki data ya matumizi\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Programu\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Lugha za ziada zinazozungumzwa\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Anzisha Anarlog wakati wa kuingia\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Arifa\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Simama mkutano unapoisha\"],\"jzmguI\":[\"Mikutano\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Hakuna lugha zinazolingana zilizopatikana\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Chagua lugha\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ta/messages.po b/apps/desktop/src/i18n/locales/ta/messages.po index 3a06e3e3d2..d77d2a2414 100644 --- a/apps/desktop/src/i18n/locales/ta/messages.po +++ b/apps/desktop/src/i18n/locales/ta/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ta/messages.ts b/apps/desktop/src/i18n/locales/ta/messages.ts index 183422328b..5012e8d77a 100644 --- a/apps/desktop/src/i18n/locales/ta/messages.ts +++ b/apps/desktop/src/i18n/locales/ta/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"முக்கிய மொழி\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"மொழியைச் சேர்\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"மீட்டிங் தொடங்கும் போது தொடங்கவும்\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"பேசும் மொழியைச் சேர்\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"தேடல் மொழி...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"மொழி & பகுதி\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"பயன்பாட்டுத் தரவைப் பகிரவும்\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"பயன்பாடு\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"கூடுதல் பேசும் மொழிகள்\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"உள்நுழைவில் Anarlog ஐத் தொடங்கவும்\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"அறிவிப்புகள்\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"சந்திப்பு முடிந்ததும் நிறுத்து\"],\"jzmguI\":[\"கூட்டங்கள்\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"பொருந்தும் மொழிகள் எதுவும் இல்லை\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"மொழியைத் தேர்ந்தெடு\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"முக்கிய மொழி\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"மொழியைச் சேர்\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"மீட்டிங் தொடங்கும் போது தொடங்கவும்\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"பேசும் மொழியைச் சேர்\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"தேடல் மொழி...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"மொழி & பகுதி\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"பயன்பாட்டுத் தரவைப் பகிரவும்\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"பயன்பாடு\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"கூடுதல் பேசும் மொழிகள்\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"உள்நுழைவில் Anarlog ஐத் தொடங்கவும்\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"அறிவிப்புகள்\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"சந்திப்பு முடிந்ததும் நிறுத்து\"],\"jzmguI\":[\"கூட்டங்கள்\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"பொருந்தும் மொழிகள் எதுவும் இல்லை\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"மொழியைத் தேர்ந்தெடு\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/te/messages.po b/apps/desktop/src/i18n/locales/te/messages.po index 69c3cc0c2f..baeb93bc27 100644 --- a/apps/desktop/src/i18n/locales/te/messages.po +++ b/apps/desktop/src/i18n/locales/te/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/te/messages.ts b/apps/desktop/src/i18n/locales/te/messages.ts index aa24a2b0ad..987fd09eb6 100644 --- a/apps/desktop/src/i18n/locales/te/messages.ts +++ b/apps/desktop/src/i18n/locales/te/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ప్రధాన భాష\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"భాషను జోడించు\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"సమావేశం ప్రారంభమైనప్పుడు ప్రారంభించండి\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"మాట్లాడే భాషను జోడించు\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"భాషను శోధించండి...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"భాష & ప్రాంతం\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"వినియోగ డేటాను భాగస్వామ్యం చేయండి\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"యాప్\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"అదనపు మాట్లాడే భాషలు\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"లాగిన్ వద్ద Anarlogని ప్రారంభించండి\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"నోటిఫికేషన్‌లు\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"సమావేశం ముగిసినప్పుడు ఆపివేయండి\"],\"jzmguI\":[\"సమావేశాలు\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"సరిపోయే భాషలు ఏవీ కనుగొనబడలేదు\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"భాషను ఎంచుకోండి\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ప్రధాన భాష\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"భాషను జోడించు\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"సమావేశం ప్రారంభమైనప్పుడు ప్రారంభించండి\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"మాట్లాడే భాషను జోడించు\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"భాషను శోధించండి...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"భాష & ప్రాంతం\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"వినియోగ డేటాను భాగస్వామ్యం చేయండి\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"యాప్\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"అదనపు మాట్లాడే భాషలు\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"లాగిన్ వద్ద Anarlogని ప్రారంభించండి\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"నోటిఫికేషన్‌లు\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"సమావేశం ముగిసినప్పుడు ఆపివేయండి\"],\"jzmguI\":[\"సమావేశాలు\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"సరిపోయే భాషలు ఏవీ కనుగొనబడలేదు\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"భాషను ఎంచుకోండి\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/tg/messages.po b/apps/desktop/src/i18n/locales/tg/messages.po index 89bc14801e..35fd0aeb03 100644 --- a/apps/desktop/src/i18n/locales/tg/messages.po +++ b/apps/desktop/src/i18n/locales/tg/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/tg/messages.ts b/apps/desktop/src/i18n/locales/tg/messages.ts index ff06e0b718..d5cfbdb799 100644 --- a/apps/desktop/src/i18n/locales/tg/messages.ts +++ b/apps/desktop/src/i18n/locales/tg/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Забони асосӣ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Иловаи забон\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Вақте ки вохӯрӣ оғоз мешавад, оғоз кунед\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Забони гуфтугӯиро илова кунед\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Забони ҷустуҷӯ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Забон ва минтақа\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Мубодилаи маълумоти истифода\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Барнома\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Забонҳои иловагии гуфтугӯӣ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Дар ворид шудан ба Anarlog оғоз кунед\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Огоҳиҳо\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Ҳангоми ба охир расидани вохӯрӣ қатъ кунед\"],\"jzmguI\":[\"Вохангҳо\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ягон забонҳои мувофиқ ёфт нашуд\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Забонро интихоб кунед\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Забони асосӣ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Иловаи забон\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Вақте ки вохӯрӣ оғоз мешавад, оғоз кунед\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Забони гуфтугӯиро илова кунед\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Забони ҷустуҷӯ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Забон ва минтақа\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Мубодилаи маълумоти истифода\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Барнома\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Забонҳои иловагии гуфтугӯӣ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Дар ворид шудан ба Anarlog оғоз кунед\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Огоҳиҳо\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Ҳангоми ба охир расидани вохӯрӣ қатъ кунед\"],\"jzmguI\":[\"Вохангҳо\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ягон забонҳои мувофиқ ёфт нашуд\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Забонро интихоб кунед\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/th/messages.po b/apps/desktop/src/i18n/locales/th/messages.po index c5e6a87e41..e0380448b8 100644 --- a/apps/desktop/src/i18n/locales/th/messages.po +++ b/apps/desktop/src/i18n/locales/th/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/th/messages.ts b/apps/desktop/src/i18n/locales/th/messages.ts index 18189157b2..f6269446cb 100644 --- a/apps/desktop/src/i18n/locales/th/messages.ts +++ b/apps/desktop/src/i18n/locales/th/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ภาษาหลัก\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"เพิ่มภาษา\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"เริ่มเมื่อการประชุมเริ่มต้นขึ้น\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"เพิ่มภาษาพูด\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ภาษาการค้นหา...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ภาษาและภูมิภาค\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"แชร์ข้อมูลการใช้งาน\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"แอป\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ภาษาพูดเพิ่มเติม\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"เริ่ม Anarlog เมื่อเข้าสู่ระบบ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"การแจ้งเตือน\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"หยุดเมื่อการประชุมสิ้นสุดลง\"],\"jzmguI\":[\"การประชุม\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ไม่พบภาษาที่ตรงกัน\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"เลือกภาษา\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ภาษาหลัก\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"เพิ่มภาษา\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"เริ่มเมื่อการประชุมเริ่มต้นขึ้น\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"เพิ่มภาษาพูด\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ภาษาการค้นหา...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ภาษาและภูมิภาค\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"แชร์ข้อมูลการใช้งาน\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"แอป\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ภาษาพูดเพิ่มเติม\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"เริ่ม Anarlog เมื่อเข้าสู่ระบบ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"การแจ้งเตือน\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"หยุดเมื่อการประชุมสิ้นสุดลง\"],\"jzmguI\":[\"การประชุม\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ไม่พบภาษาที่ตรงกัน\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"เลือกภาษา\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/tk/messages.po b/apps/desktop/src/i18n/locales/tk/messages.po index 596ff98330..e29fe1c004 100644 --- a/apps/desktop/src/i18n/locales/tk/messages.po +++ b/apps/desktop/src/i18n/locales/tk/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/tk/messages.ts b/apps/desktop/src/i18n/locales/tk/messages.ts index cae940b78b..7e335a9b00 100644 --- a/apps/desktop/src/i18n/locales/tk/messages.ts +++ b/apps/desktop/src/i18n/locales/tk/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Esasy dil\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dil goşuň\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Duşuşyk başlanda başlaň\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Gepleşik dilini goşuň\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Gözleg dili ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Dil we sebit\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Ulanyş maglumatlaryny paýlaşyň\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"programma\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Goşmaça gürleýän diller\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Anarlogy girişden başlaň\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Duýduryşlar\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Duşuşyk gutaranda duruň\"],\"jzmguI\":[\"Duşuşyklar\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Gabat gelýän diller tapylmady\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Dil saýlaň\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Esasy dil\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dil goşuň\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Duşuşyk başlanda başlaň\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Gepleşik dilini goşuň\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Gözleg dili ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Dil we sebit\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Ulanyş maglumatlaryny paýlaşyň\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"programma\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Goşmaça gürleýän diller\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Anarlogy girişden başlaň\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Duýduryşlar\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Duşuşyk gutaranda duruň\"],\"jzmguI\":[\"Duşuşyklar\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Gabat gelýän diller tapylmady\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Dil saýlaň\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/tl/messages.po b/apps/desktop/src/i18n/locales/tl/messages.po index b8ff2c96c7..22c3576757 100644 --- a/apps/desktop/src/i18n/locales/tl/messages.po +++ b/apps/desktop/src/i18n/locales/tl/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/tl/messages.ts b/apps/desktop/src/i18n/locales/tl/messages.ts index 0edd1bcdbd..d8a96d055e 100644 --- a/apps/desktop/src/i18n/locales/tl/messages.ts +++ b/apps/desktop/src/i18n/locales/tl/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Pangunahing wika\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Magdagdag ng wika\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Magsimula kapag nagsimula ang pulong\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Magdagdag ng sinasalitang wika\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Wika sa paghahanap...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Wika at Rehiyon\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Ibahagi ang data ng paggamit\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Mga karagdagang sinasalitang wika\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Simulan ang Anarlog sa pag-login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Mga Notification\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Ihinto kapag natapos na ang pulong\"],\"jzmguI\":[\"Mga Pagpupulong\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Walang nakitang katugmang mga wika\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Pumili ng wika\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Pangunahing wika\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Magdagdag ng wika\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Magsimula kapag nagsimula ang pulong\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Magdagdag ng sinasalitang wika\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Wika sa paghahanap...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Wika at Rehiyon\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Ibahagi ang data ng paggamit\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Mga karagdagang sinasalitang wika\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Simulan ang Anarlog sa pag-login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Mga Notification\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Ihinto kapag natapos na ang pulong\"],\"jzmguI\":[\"Mga Pagpupulong\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Walang nakitang katugmang mga wika\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Pumili ng wika\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/tr/messages.po b/apps/desktop/src/i18n/locales/tr/messages.po index c042f24fcd..61c6e909c6 100644 --- a/apps/desktop/src/i18n/locales/tr/messages.po +++ b/apps/desktop/src/i18n/locales/tr/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/tr/messages.ts b/apps/desktop/src/i18n/locales/tr/messages.ts index ecdbecd7fb..31f255ad07 100644 --- a/apps/desktop/src/i18n/locales/tr/messages.ts +++ b/apps/desktop/src/i18n/locales/tr/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ana dil\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dil ekle\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Toplantı başladığında başla\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Konuşulan dili ekle\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Dil ara...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Dil ve Bölge\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kullanım verilerini paylaşın\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Uygulama\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ek konuşulan diller\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Giriş sırasında Anarlog'u başlatın\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Bildirimler\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Toplantı sona erdiğinde dur\"],\"jzmguI\":[\"Toplantılar\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Eşleşen dil bulunamadı\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Dil seçin\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ana dil\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dil ekle\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Toplantı başladığında başla\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Konuşulan dili ekle\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Dil ara...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Dil ve Bölge\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kullanım verilerini paylaşın\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Uygulama\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ek konuşulan diller\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Giriş sırasında Anarlog'u başlatın\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Bildirimler\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Toplantı sona erdiğinde dur\"],\"jzmguI\":[\"Toplantılar\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Eşleşen dil bulunamadı\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Dil seçin\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/tt/messages.po b/apps/desktop/src/i18n/locales/tt/messages.po index cecab2502f..a216577702 100644 --- a/apps/desktop/src/i18n/locales/tt/messages.po +++ b/apps/desktop/src/i18n/locales/tt/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/tt/messages.ts b/apps/desktop/src/i18n/locales/tt/messages.ts index 9b578aaef6..22e2b7c1c1 100644 --- a/apps/desktop/src/i18n/locales/tt/messages.ts +++ b/apps/desktop/src/i18n/locales/tt/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Төп тел\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Тел өстәгез\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Очрашу башлангач башлагыз\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Сөйләм телен өстәү\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Эзләү теле ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Тел һәм Төбәк\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Куллану мәгълүматларын бүлешү\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"кушымта\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Өстәмә сөйләм телләре\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Анарлогны логинда башлау\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Хәбәрләр\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Очрашу беткәч туктагыз\"],\"jzmguI\":[\"Очрашулар\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Бер-берсенә туры килгән телләр табылмады\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Телне сайлагыз\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Төп тел\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Тел өстәгез\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Очрашу башлангач башлагыз\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Сөйләм телен өстәү\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Эзләү теле ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Тел һәм Төбәк\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Куллану мәгълүматларын бүлешү\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"кушымта\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Өстәмә сөйләм телләре\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Анарлогны логинда башлау\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Хәбәрләр\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Очрашу беткәч туктагыз\"],\"jzmguI\":[\"Очрашулар\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Бер-берсенә туры килгән телләр табылмады\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Телне сайлагыз\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/uk/messages.po b/apps/desktop/src/i18n/locales/uk/messages.po index f004a965cf..58be66a949 100644 --- a/apps/desktop/src/i18n/locales/uk/messages.po +++ b/apps/desktop/src/i18n/locales/uk/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/uk/messages.ts b/apps/desktop/src/i18n/locales/uk/messages.ts index 1213327e6f..a225e3e558 100644 --- a/apps/desktop/src/i18n/locales/uk/messages.ts +++ b/apps/desktop/src/i18n/locales/uk/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Основна мова\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Додати мову\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Почати під час зустрічі\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Додати розмовну мову\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Мова пошуку...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Мова та регіон\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Обмін даними про використання\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Програма\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Додаткові розмовні мови\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Запускати Anarlog під час входу\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Сповіщення\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Зупинити, коли зустріч закінчиться\"],\"jzmguI\":[\"Зустрічі\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Відповідних мов не знайдено\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Виберіть мову\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Основна мова\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Додати мову\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Почати під час зустрічі\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Додати розмовну мову\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Мова пошуку...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Мова та регіон\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Обмін даними про використання\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Програма\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Додаткові розмовні мови\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Запускати Anarlog під час входу\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Сповіщення\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Зупинити, коли зустріч закінчиться\"],\"jzmguI\":[\"Зустрічі\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Відповідних мов не знайдено\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Виберіть мову\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ur/messages.po b/apps/desktop/src/i18n/locales/ur/messages.po index ecf5782816..87df9bb673 100644 --- a/apps/desktop/src/i18n/locales/ur/messages.po +++ b/apps/desktop/src/i18n/locales/ur/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ur/messages.ts b/apps/desktop/src/i18n/locales/ur/messages.ts index 30b0fe50b4..52962c1a5d 100644 --- a/apps/desktop/src/i18n/locales/ur/messages.ts +++ b/apps/desktop/src/i18n/locales/ur/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"مرکزی زبان\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"زبان شامل کریں\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"میٹنگ شروع ہونے پر شروع کریں\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"بولی جانے والی زبان شامل کریں\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"تلاش زبان...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"زبان اور علاقہ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"استعمال کا ڈیٹا شیئر کریں\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ایپ\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"اضافی بولی جانے والی زبانیں\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"لاگ ان پر Anarlog شروع کریں\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"اطلاعات\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"میٹنگ ختم ہونے پر رکیں\"],\"jzmguI\":[\"میٹنگز\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"کوئی مماثل زبانیں نہیں ملی\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"زبان منتخب کریں\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"مرکزی زبان\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"زبان شامل کریں\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"میٹنگ شروع ہونے پر شروع کریں\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"بولی جانے والی زبان شامل کریں\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"تلاش زبان...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"زبان اور علاقہ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"استعمال کا ڈیٹا شیئر کریں\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ایپ\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"اضافی بولی جانے والی زبانیں\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"لاگ ان پر Anarlog شروع کریں\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"اطلاعات\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"میٹنگ ختم ہونے پر رکیں\"],\"jzmguI\":[\"میٹنگز\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"کوئی مماثل زبانیں نہیں ملی\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"زبان منتخب کریں\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/uz/messages.po b/apps/desktop/src/i18n/locales/uz/messages.po index 4b202aaeeb..25af8b66a1 100644 --- a/apps/desktop/src/i18n/locales/uz/messages.po +++ b/apps/desktop/src/i18n/locales/uz/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/uz/messages.ts b/apps/desktop/src/i18n/locales/uz/messages.ts index 7b7e5cb1e1..6e1509e8e5 100644 --- a/apps/desktop/src/i18n/locales/uz/messages.ts +++ b/apps/desktop/src/i18n/locales/uz/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Asosiy til\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Til qo'shish\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Uchrashuv boshlanganda boshlang\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Og'zaki til qo'shing\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Tilni qidirish...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Til va mintaqa\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Foydalanish ma'lumotlarini baham ko'rish\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ilova\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Qo'shimcha og'zaki tillar\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Kirish vaqtida Anarlogni ishga tushiring\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Bildirishnomalar\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Uchrashuv tugashi bilan toʻxtating\"],\"jzmguI\":[\"Uchrashuvlar\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Mos tillar topilmadi\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Tilni tanlang\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Asosiy til\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Til qo'shish\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Uchrashuv boshlanganda boshlang\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Og'zaki til qo'shing\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Tilni qidirish...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Til va mintaqa\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Foydalanish ma'lumotlarini baham ko'rish\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ilova\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Qo'shimcha og'zaki tillar\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Kirish vaqtida Anarlogni ishga tushiring\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Bildirishnomalar\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Uchrashuv tugashi bilan toʻxtating\"],\"jzmguI\":[\"Uchrashuvlar\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Mos tillar topilmadi\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Tilni tanlang\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/vi/messages.po b/apps/desktop/src/i18n/locales/vi/messages.po index a0ae725dd1..fd8e0e7eaa 100644 --- a/apps/desktop/src/i18n/locales/vi/messages.po +++ b/apps/desktop/src/i18n/locales/vi/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/vi/messages.ts b/apps/desktop/src/i18n/locales/vi/messages.ts index 9e54c8fc21..8a68ac2e45 100644 --- a/apps/desktop/src/i18n/locales/vi/messages.ts +++ b/apps/desktop/src/i18n/locales/vi/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ngôn ngữ chính\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Thêm ngôn ngữ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Bắt đầu khi cuộc họp bắt đầu\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Thêm ngôn ngữ nói\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Ngôn ngữ tìm kiếm...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Ngôn ngữ & Khu vực\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Chia sẻ dữ liệu sử dụng\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ứng dụng\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ngôn ngữ nói bổ sung\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Bắt đầu Anarlog khi đăng nhập\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Thông báo\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Dừng khi cuộc họp kết thúc\"],\"jzmguI\":[\"Cuộc họp\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Không tìm thấy ngôn ngữ phù hợp\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Chọn ngôn ngữ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ngôn ngữ chính\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Thêm ngôn ngữ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Bắt đầu khi cuộc họp bắt đầu\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Thêm ngôn ngữ nói\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Ngôn ngữ tìm kiếm...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Ngôn ngữ & Khu vực\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Chia sẻ dữ liệu sử dụng\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ứng dụng\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ngôn ngữ nói bổ sung\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Bắt đầu Anarlog khi đăng nhập\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Thông báo\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Dừng khi cuộc họp kết thúc\"],\"jzmguI\":[\"Cuộc họp\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Không tìm thấy ngôn ngữ phù hợp\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Chọn ngôn ngữ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/wo/messages.po b/apps/desktop/src/i18n/locales/wo/messages.po index d07f0253ea..e85c94215d 100644 --- a/apps/desktop/src/i18n/locales/wo/messages.po +++ b/apps/desktop/src/i18n/locales/wo/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/wo/messages.ts b/apps/desktop/src/i18n/locales/wo/messages.ts index 41974e67ab..4253665939 100644 --- a/apps/desktop/src/i18n/locales/wo/messages.ts +++ b/apps/desktop/src/i18n/locales/wo/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Làkk wi gëna am solo\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Yokk làkk\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Tàmbali su ndaje bi tàmbalee\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Yokk làkk wiñ làkk\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Làkku seetlu...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Làkk wi ak Réew mi\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Séddoo done jëfandikoo\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Jëfekaay\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Yeneen làkk yi ñuy làkk\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Tàmbali Anarlog ci dugg bi\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Yégle yi\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Taxawal su ndaje bi jeexee\"],\"jzmguI\":[\"Ndaje yi\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Gisu ñu làkk wu méngoo\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Tannal làkk wi\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Làkk wi gëna am solo\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Yokk làkk\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Tàmbali su ndaje bi tàmbalee\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Yokk làkk wiñ làkk\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Làkku seetlu...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Làkk wi ak Réew mi\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Séddoo done jëfandikoo\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Jëfekaay\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Yeneen làkk yi ñuy làkk\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Tàmbali Anarlog ci dugg bi\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Yégle yi\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Taxawal su ndaje bi jeexee\"],\"jzmguI\":[\"Ndaje yi\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Gisu ñu làkk wu méngoo\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Tannal làkk wi\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/xh/messages.po b/apps/desktop/src/i18n/locales/xh/messages.po index 445b58cacf..342aac4cee 100644 --- a/apps/desktop/src/i18n/locales/xh/messages.po +++ b/apps/desktop/src/i18n/locales/xh/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/xh/messages.ts b/apps/desktop/src/i18n/locales/xh/messages.ts index ff397e4acc..37140e1cab 100644 --- a/apps/desktop/src/i18n/locales/xh/messages.ts +++ b/apps/desktop/src/i18n/locales/xh/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ulwimi oluphambili\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Yongeza ulwimi\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Qala xa intlanganiso iqala\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Yongeza ulwimi oluthethwayo\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Khangela ulwimi...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Ulwimi & neNgingqi\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Yabelana ngedatha yosetyenziso\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Usetyenziso\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Iilwimi ezongezelelweyo ezithethwayo\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Qalisa i-Anarlog ekungeneni\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Izaziso\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Yima xa kuphela intlanganiso\"],\"jzmguI\":[\"Iintlanganiso\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Akukho lwimi ludibanayo lufunyenweyo\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Khetha ulwimi\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ulwimi oluphambili\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Yongeza ulwimi\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Qala xa intlanganiso iqala\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Yongeza ulwimi oluthethwayo\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Khangela ulwimi...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Ulwimi & neNgingqi\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Yabelana ngedatha yosetyenziso\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Usetyenziso\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Iilwimi ezongezelelweyo ezithethwayo\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Qalisa i-Anarlog ekungeneni\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Izaziso\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Yima xa kuphela intlanganiso\"],\"jzmguI\":[\"Iintlanganiso\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Akukho lwimi ludibanayo lufunyenweyo\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Khetha ulwimi\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/yi/messages.po b/apps/desktop/src/i18n/locales/yi/messages.po index acb842e592..96a6f5c8d4 100644 --- a/apps/desktop/src/i18n/locales/yi/messages.po +++ b/apps/desktop/src/i18n/locales/yi/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/yi/messages.ts b/apps/desktop/src/i18n/locales/yi/messages.ts index 25ed338dff..f9d1242cd0 100644 --- a/apps/desktop/src/i18n/locales/yi/messages.ts +++ b/apps/desktop/src/i18n/locales/yi/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"הויפּט שפּראַך\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"צוגעבן שפּראַך\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"אָנהייב ווען באַגעגעניש הייבט זיך אָן\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"צוגעבן גערעדט שפּראַך\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"זוכן שפּראַך...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"שפּראַך און געגנט\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ייַנטיילן באַניץ דאַטן\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"אַפּ\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"נאך גערעדטע שפראכן\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"אָנהייב אַנאַלאָג ביי לאָגין\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"נאָטיפיקאַטיאָנס\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"האַלטן ווען באַגעגעניש ענדס\"],\"jzmguI\":[\"מיטינגז\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"קיין שטיפעריש שפראכן געפונען\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"סעלעקט שפּראַך\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"הויפּט שפּראַך\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"צוגעבן שפּראַך\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"אָנהייב ווען באַגעגעניש הייבט זיך אָן\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"צוגעבן גערעדט שפּראַך\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"זוכן שפּראַך...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"שפּראַך און געגנט\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ייַנטיילן באַניץ דאַטן\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"אַפּ\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"נאך גערעדטע שפראכן\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"אָנהייב אַנאַלאָג ביי לאָגין\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"נאָטיפיקאַטיאָנס\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"האַלטן ווען באַגעגעניש ענדס\"],\"jzmguI\":[\"מיטינגז\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"קיין שטיפעריש שפראכן געפונען\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"סעלעקט שפּראַך\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/yo/messages.po b/apps/desktop/src/i18n/locales/yo/messages.po index 60b4b127d8..49e40eebff 100644 --- a/apps/desktop/src/i18n/locales/yo/messages.po +++ b/apps/desktop/src/i18n/locales/yo/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/yo/messages.ts b/apps/desktop/src/i18n/locales/yo/messages.ts index 334a5ae5cc..62b27b9386 100644 --- a/apps/desktop/src/i18n/locales/yo/messages.ts +++ b/apps/desktop/src/i18n/locales/yo/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ede akọkọ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Fi ede kun\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Bẹrẹ nigbati ipade ba bẹrẹ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Fi ede sisọ kun\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Ede wa...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Ede & Ekun\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Pin data lilo\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ohun elo\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Awọn ede ti a sọ ni afikun\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Bẹrẹ Anarlog ni wiwọle\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Awọn iwifunni\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Duro nigbati ipade ba pari\"],\"jzmguI\":[\"Awọn ipade\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ko si awọn ede ti o baamu ti a rii\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Yan ede\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ede akọkọ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Fi ede kun\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Bẹrẹ nigbati ipade ba bẹrẹ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Fi ede sisọ kun\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Ede wa...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Ede & Ekun\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Pin data lilo\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ohun elo\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Awọn ede ti a sọ ni afikun\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Bẹrẹ Anarlog ni wiwọle\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Awọn iwifunni\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Duro nigbati ipade ba pari\"],\"jzmguI\":[\"Awọn ipade\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ko si awọn ede ti o baamu ti a rii\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Yan ede\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/zh/messages.po b/apps/desktop/src/i18n/locales/zh/messages.po index 812d2eaa98..ced3f8e7ad 100644 --- a/apps/desktop/src/i18n/locales/zh/messages.po +++ b/apps/desktop/src/i18n/locales/zh/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/zh/messages.ts b/apps/desktop/src/i18n/locales/zh/messages.ts index c40c22580a..f400db091a 100644 --- a/apps/desktop/src/i18n/locales/zh/messages.ts +++ b/apps/desktop/src/i18n/locales/zh/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"主要语言\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"添加语言\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"会议开始时启动\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"添加口语语言\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"搜索语言...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"语言和地区\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"分享使用数据\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"应用\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"其他口语语言\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"登录时启动 Anarlog\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"通知\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"会议结束时停止\"],\"jzmguI\":[\"会议\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"未找到匹配的语言\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"选择语言\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"主要语言\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"添加语言\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"会议开始时启动\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"添加口语语言\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"搜索语言...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"语言和地区\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"分享使用数据\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"应用\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"其他口语语言\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"登录时启动 Anarlog\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"通知\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"会议结束时停止\"],\"jzmguI\":[\"会议\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"未找到匹配的语言\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"选择语言\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/zu/messages.po b/apps/desktop/src/i18n/locales/zu/messages.po index 20795c7fe1..bd25bed5bd 100644 --- a/apps/desktop/src/i18n/locales/zu/messages.po +++ b/apps/desktop/src/i18n/locales/zu/messages.po @@ -313,6 +313,14 @@ msgstr "" msgid "All providers are connected." msgstr "" +#: src/settings/team/index.tsx +msgid "Allow anyone-with-the-link sharing" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Allow public indexing" +msgstr "" + #: src/shared/control.tsx msgid "An unexpected error occurred." msgstr "" @@ -676,6 +684,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/team/index.tsx +msgid "Calendar-scheduled capture jobs. Canceling stops the bot from joining." +msgstr "" + #: src/session-sharing/access-management.tsx msgid "Can comment" msgstr "" @@ -704,6 +716,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: src/settings/team/index.tsx +msgid "Cancel bot" +msgstr "" + #: src/session/components/outer-header/metadata/date.tsx msgid "Cancel date edit" msgstr "" @@ -884,6 +900,10 @@ msgstr "" msgid "Choose which day begins your calendar week." msgstr "" +#: src/settings/team/index.tsx +msgid "Claim email domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Clean Up" msgstr "" @@ -1590,6 +1610,7 @@ msgid "Device limit reached" msgstr "" #: src/settings/sync/index.tsx +#: src/settings/team/index.tsx msgid "Devices" msgstr "" @@ -2240,6 +2261,10 @@ msgstr "" msgid "Keep desktop edits" msgstr "" +#: src/settings/team/index.tsx +msgid "Keep forever" +msgstr "" + #: src/settings/sync/index.tsx msgid "Keep notes current automatically." msgstr "" @@ -2382,6 +2407,10 @@ msgstr "" msgid "Loading models..." msgstr "" +#: src/settings/team/index.tsx +msgid "Loading scheduled captures…" +msgstr "" + #: src/settings/general/index.tsx #: src/settings/hydration-boundary.tsx msgid "Loading settings" @@ -2534,6 +2563,10 @@ msgstr "" msgid "members" msgstr "" +#: src/settings/team/index.tsx +msgid "Members" +msgstr "" + #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -2827,6 +2860,10 @@ msgstr "" msgid "No transcript available" msgstr "" +#: src/settings/team/index.tsx +msgid "No upcoming bots." +msgstr "" + #: src/settings/developers/cli.tsx msgid "Not installed" msgstr "" @@ -3126,6 +3163,10 @@ msgstr "" msgid "Play from here" msgstr "" +#: src/settings/team/index.tsx +msgid "Policies" +msgstr "" + #: src/automations/starters.tsx msgid "Post a meeting recap to a Slack channel." msgstr "" @@ -3426,6 +3467,10 @@ msgstr "" msgid "Requested {0}" msgstr "" +#: src/settings/team/index.tsx +msgid "Require SSO" +msgstr "" + #: src/settings/privacy/index.tsx msgid "Require Touch ID or your password when opening Anarlog." msgstr "" @@ -3492,6 +3537,10 @@ msgstr "" msgid "Resume sync" msgstr "" +#: src/settings/team/index.tsx +msgid "Retention (days)" +msgstr "" + #: src/chat/components/message/error.tsx #: src/main/sync-status.tsx #: src/session/components/note-input/enhanced/enhance-error.tsx @@ -3534,6 +3583,14 @@ msgstr "" msgid "Save draft" msgstr "" +#: src/settings/team/index.tsx +msgid "Save policies" +msgstr "" + +#: src/settings/team/index.tsx +msgid "Save SCIM token" +msgstr "" + #: src/settings/general/e2ee-setup.tsx msgid "Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again." msgstr "" @@ -3547,6 +3604,10 @@ msgstr "" msgid "Saved locally" msgstr "" +#: src/settings/team/index.tsx +msgid "SCIM bearer token" +msgstr "" + #: src/session/components/note-input/transcript/renderer/index.tsx msgid "Scroll to bottom" msgstr "" @@ -3630,6 +3691,10 @@ msgstr "" msgid "Search..." msgstr "" +#: src/settings/team/index.tsx +msgid "Seats" +msgstr "" + #: src/templates/sections-editor.tsx msgid "Section actions" msgstr "" @@ -3852,6 +3917,10 @@ msgstr "" msgid "Shared with me · View only" msgstr "" +#: src/settings/team/index.tsx +msgid "Shares (30d)" +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Sharing paused to protect your edits" msgstr "" @@ -4421,6 +4490,10 @@ msgstr "" msgid "Theme" msgstr "" +#: src/settings/team/index.tsx +msgid "These rules apply to every member. Sharing changes fail closed on the server." +msgstr "" + #: src/chat/components/message/loading.tsx msgid "Thinking..." msgstr "" @@ -4646,6 +4719,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/settings/team/index.tsx +msgid "Upcoming bot attendance" +msgstr "" + #: src/services/event-notification/index.ts msgid "Upcoming Event" msgstr "" @@ -4749,6 +4826,10 @@ msgstr "" msgid "Uploads meeting content for remote access while Anarlog is closed." msgstr "" +#: src/settings/team/index.tsx +msgid "Usage" +msgstr "" + #: src/automations/starters.tsx msgid "Use a stable filename in the configured export directory." msgstr "" @@ -4793,6 +4874,10 @@ msgstr "" msgid "Use your microphone to capture your voice" msgstr "" +#: src/settings/team/index.tsx +msgid "Verify domain" +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "Verifying the SQLite migration status" msgstr "" @@ -4886,6 +4971,10 @@ msgstr "" msgid "Workspace" msgstr "" +#: src/settings/team/index.tsx +msgid "Workspace activity from metadata only. Note content stays unreadable on the server." +msgstr "" + #: src/settings/team/index.tsx msgid "Workspace name" msgstr "" diff --git a/apps/desktop/src/i18n/locales/zu/messages.ts b/apps/desktop/src/i18n/locales/zu/messages.ts index b528a84676..d7df715c09 100644 --- a/apps/desktop/src/i18n/locales/zu/messages.ts +++ b/apps/desktop/src/i18n/locales/zu/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ulimi oluyinhloko\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Engeza ulimi\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Qala uma umhlangano uqala\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Engeza ulimi olukhulunywayo\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Sesha ulimi...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Ulimi Nesifunda\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Yabelana ngedatha yokusetshenziswa\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Uhlelo lokusebenza\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Izilimi ezengeziwe ezikhulunywayo\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Qala i-Anarlog ekungeneni ngemvume\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Izaziso\"],\"iH8pgl\":[\"Back\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Yima lapho umhlangano uphela\"],\"jzmguI\":[\"Imihlangano\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Azikho izilimi ezifanayo ezitholiwe\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Khetha ulimi\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"010u5-\":[\"This automation is drafted in Chat. Continue the conversation on the right to refine what it should do.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ulimi oluyinhloko\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Engeza ulimi\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Qala uma umhlangano uqala\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9i40jm\":[\"Describe what should happen and when. This draft becomes an automation once you send the first message.\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Engeza ulimi olukhulunywayo\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Sesha ulimi...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Ulimi Nesifunda\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Yabelana ngedatha yokusetshenziswa\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"Jzcndp\":[\"Drafted in Chat\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Uhlelo lokusebenza\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkCqyP\":[\"Start in Chat\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OZtEcz\":[\"API\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBXLyj\":[\"Choose a starter from the sidebar or describe an automation in Chat.\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"WVzGc2\":[\"Subscription\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Izilimi ezengeziwe ezikhulunywayo\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cmLyUX\":[\"Done writing\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Qala i-Anarlog ekungeneni ngemvume\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i0ZNp9\":[\"Public on the web\"],\"i4_LY_\":[\"Write\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Izaziso\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Yima lapho umhlangano uphela\"],\"jzmguI\":[\"Imihlangano\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Azikho izilimi ezifanayo ezitholiwe\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Khetha ulimi\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lFnrVX\":[\"Replace link & copy\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkivCq\":[\"Sign in with Claude Pro or Max, then paste the authorization code.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rG3WVm\":[\"Select\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u94TPe\":[\"All providers are connected.\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCJdfg\":[\"Clear\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/session-sharing/draft-panel.tsx b/apps/desktop/src/session-sharing/draft-panel.tsx index bc6f4e3fe9..89d3e1fe77 100644 --- a/apps/desktop/src/session-sharing/draft-panel.tsx +++ b/apps/desktop/src/session-sharing/draft-panel.tsx @@ -24,6 +24,7 @@ import { useShareInvite, } from "./invite-recipients"; import type { AvailableShareWorkspace } from "./source"; +import { useWorkspaceShareScopes } from "./workspace-policy"; import { useAuth } from "~/auth"; import { ContactFacehash } from "~/contacts/shared"; @@ -60,6 +61,7 @@ export function SessionShareDraftContent({ : ownerEmail || "You"; const invite = useShareInvite({ sessionId, ownerEmail, invitedEmails: [] }); const actionPending = pendingAction !== null; + const allowedScopes = useWorkspaceShareScopes(workspaces); const generalAccessValue = pendingAction?.type === "scope" ? pendingAction.target : "restricted"; @@ -153,6 +155,7 @@ export function SessionShareDraftContent({ disabled={disabled} canExpand={!disabled} pending={pendingAction?.type === "scope"} + allowedScopes={allowedScopes} onValueChange={(target) => { if (target !== "restricted") { onAction({ type: "scope", target }); diff --git a/apps/desktop/src/session-sharing/general-access.tsx b/apps/desktop/src/session-sharing/general-access.tsx index 42e71bf1d8..7b5a79185e 100644 --- a/apps/desktop/src/session-sharing/general-access.tsx +++ b/apps/desktop/src/session-sharing/general-access.tsx @@ -22,6 +22,7 @@ export function GeneralAccessSelector({ disabled, canExpand, pending, + allowedScopes = ["restricted", "workspace", "link", "public"], onValueChange, }: { value: GeneralAccessValue; @@ -29,6 +30,7 @@ export function GeneralAccessSelector({ disabled: boolean; canExpand: boolean; pending: boolean; + allowedScopes?: Array<"restricted" | "workspace" | "link" | "public">; onValueChange: (value: GeneralAccessTarget) => void; }) { const AccessIcon = @@ -69,18 +71,24 @@ export function GeneralAccessSelector({ Everyone in {workspace.name} ))} - + Anyone with the link {value === "public" ? ( <> - + Public on the web diff --git a/apps/desktop/src/session-sharing/index.test.tsx b/apps/desktop/src/session-sharing/index.test.tsx index a64db3a2d8..70e88873ee 100644 --- a/apps/desktop/src/session-sharing/index.test.tsx +++ b/apps/desktop/src/session-sharing/index.test.tsx @@ -67,6 +67,10 @@ const mocks = vi.hoisted(() => ({ workspaces: [] as { id: string; name: string }[], })); +vi.mock("./workspace-policy", () => ({ + useWorkspaceShareScopes: () => ["restricted", "workspace", "link", "public"], +})); + vi.mock("~/auth", () => ({ useAuth: () => mocks.auth, })); diff --git a/apps/desktop/src/session-sharing/management-panel.tsx b/apps/desktop/src/session-sharing/management-panel.tsx index 2076ea7f90..a320c68d91 100644 --- a/apps/desktop/src/session-sharing/management-panel.tsx +++ b/apps/desktop/src/session-sharing/management-panel.tsx @@ -62,6 +62,7 @@ import { createPublishLatestSessionShare } from "./management-publish"; import type { AvailableShareWorkspace } from "./source"; import { useSessionShareSyncStatus } from "./sync-state"; import { buildAccountSessionShareUrl } from "./urls"; +import { useWorkspaceShareScopes } from "./workspace-policy"; import { trackAnalyticsEvent } from "~/analytics"; import { useAuth } from "~/auth"; @@ -104,6 +105,7 @@ export function SessionSharePopoverContent({ }) { const auth = useAuth(); const humans = useHumans(); + const allowedScopes = useWorkspaceShareScopes(workspaces); const { operationLifecycleRef, runOperation, requireActiveContext } = useShareOperationLifecycle({ auth, identity, pendingRef }); const management = data?.management; @@ -580,6 +582,7 @@ export function SessionSharePopoverContent({ disabled={!management} canExpand={canPublish} pending={scopeMutation.isPending} + allowedScopes={allowedScopes} onValueChange={(target) => { setOptimisticScope(target); scopeMutation.mutate(target); diff --git a/apps/desktop/src/session-sharing/workspace-policy.ts b/apps/desktop/src/session-sharing/workspace-policy.ts new file mode 100644 index 0000000000..469f09a4ed --- /dev/null +++ b/apps/desktop/src/session-sharing/workspace-policy.ts @@ -0,0 +1,42 @@ +import { useQuery } from "@tanstack/react-query"; + +import type { AvailableShareWorkspace } from "./source"; + +import { useAuth } from "~/auth"; +import { + getWorkspacePolicy, + intersectAllowedShareScopes, + requireTeamContext, + type WorkspacePolicy, +} from "~/settings/team/client"; + +const DEFAULT_SCOPES: WorkspacePolicy["allowedShareScopes"] = [ + "restricted", + "workspace", + "link", + "public", +]; + +export function useWorkspaceShareScopes( + workspaces: AvailableShareWorkspace[], +): WorkspacePolicy["allowedShareScopes"] { + const auth = useAuth(); + const workspaceIds = workspaces.map((workspace) => workspace.id).join(","); + const { data = DEFAULT_SCOPES } = useQuery({ + queryKey: ["workspace-share-scopes", workspaceIds], + enabled: Boolean(auth.session && auth.supabase && workspaces.length > 0), + retry: false, + queryFn: async () => { + const context = requireTeamContext(auth); + const policies = await Promise.all( + workspaces.map((workspace) => + getWorkspacePolicy(context, workspace.id).catch(() => ({ + allowedShareScopes: DEFAULT_SCOPES, + })), + ), + ); + return intersectAllowedShareScopes(policies); + }, + }); + return data; +} diff --git a/apps/desktop/src/settings/team/client.test.ts b/apps/desktop/src/settings/team/client.test.ts index b707976f6b..9a9b43b1e2 100644 --- a/apps/desktop/src/settings/team/client.test.ts +++ b/apps/desktop/src/settings/team/client.test.ts @@ -3,6 +3,8 @@ import { describe, expect, it, vi } from "vitest"; import { createWorkspace, getSeatUsage, + getWorkspacePolicy, + intersectAllowedShareScopes, listWorkspaceInvitations, listWorkspaceMembers, removeMember, @@ -96,6 +98,29 @@ describe("workspace reads", () => { isBilled: false, }); }); + + it("intersects org share policies so clients hide disallowed scopes", async () => { + const { context: ctx } = context([ + { + allowed_share_scopes: ["restricted", "workspace"], + default_share_scope: "restricted", + retention_days: 30, + model_training_opt_out: true, + consent_notification_enabled: true, + require_sso: false, + }, + ]); + + const policy = await getWorkspacePolicy(ctx, WORKSPACE_ID); + expect( + intersectAllowedShareScopes([ + policy, + { + allowedShareScopes: ["restricted", "workspace", "link", "public"], + }, + ]), + ).toEqual(["restricted", "workspace"]); + }); }); describe("failure handling", () => { diff --git a/apps/desktop/src/settings/team/client.ts b/apps/desktop/src/settings/team/client.ts index c3bf58612d..fc82cfc907 100644 --- a/apps/desktop/src/settings/team/client.ts +++ b/apps/desktop/src/settings/team/client.ts @@ -231,6 +231,153 @@ export async function deleteWorkspace( await callRpc(context, "delete_workspace", { p_workspace_id: workspaceId }); } +export type WorkspaceUsageOverview = { + memberCount: number; + pendingInvitations: number; + enrolledDevices: number; + sharesCreated30d: number; + shareAccessEvents30d: number; + seatLimit: number | null; + usedSeats: number; + isBilled: boolean; +}; + +export type WorkspacePolicy = { + allowedShareScopes: Array<"restricted" | "workspace" | "link" | "public">; + defaultShareScope: "restricted" | "workspace" | "link" | "public"; + retentionDays: number | null; + modelTrainingOptOut: boolean; + consentNotificationEnabled: boolean; + requireSso: boolean; +}; + +function numberOrNull(value: unknown): number | null { + return typeof value === "number" ? value : null; +} + +function number(value: unknown): number { + return typeof value === "number" ? value : 0; +} + +export async function getWorkspaceUsageOverview( + context: TeamContext, + workspaceId: string, +): Promise { + assertWorkspaceId(workspaceId); + const row = rows( + await callRpc(context, "get_workspace_usage_overview", { + p_workspace_id: workspaceId, + }), + )[0]; + if (!row) throw new TeamError(); + return { + memberCount: number(row.member_count), + pendingInvitations: number(row.pending_invitations), + enrolledDevices: number(row.enrolled_devices), + sharesCreated30d: number(row.shares_created_30d), + shareAccessEvents30d: number(row.share_access_events_30d), + seatLimit: numberOrNull(row.seat_limit), + usedSeats: number(row.used_seats), + isBilled: row.is_billed === true, + }; +} + +function shareScope( + value: unknown, +): "restricted" | "workspace" | "link" | "public" { + if ( + value !== "restricted" && + value !== "workspace" && + value !== "link" && + value !== "public" + ) { + throw new TeamError(); + } + return value; +} + +export async function getWorkspacePolicy( + context: TeamContext, + workspaceId: string, +): Promise { + assertWorkspaceId(workspaceId); + const row = rows( + await callRpc(context, "get_workspace_policy", { + p_workspace_id: workspaceId, + }), + )[0]; + if (!row) throw new TeamError(); + const scopes = Array.isArray(row.allowed_share_scopes) + ? row.allowed_share_scopes.map(shareScope) + : (["restricted"] as WorkspacePolicy["allowedShareScopes"]); + return { + allowedShareScopes: scopes, + defaultShareScope: shareScope(row.default_share_scope), + retentionDays: numberOrNull(row.retention_days), + modelTrainingOptOut: row.model_training_opt_out !== false, + consentNotificationEnabled: row.consent_notification_enabled !== false, + requireSso: row.require_sso === true, + }; +} + +export function intersectAllowedShareScopes( + policies: Array>, +): WorkspacePolicy["allowedShareScopes"] { + const scopes: WorkspacePolicy["allowedShareScopes"] = [ + "restricted", + "workspace", + "link", + "public", + ]; + if (policies.length === 0) return scopes; + return scopes.filter((scope) => + policies.every((policy) => policy.allowedShareScopes.includes(scope)), + ); +} + +export async function claimWorkspaceDomain( + context: TeamContext, + workspaceId: string, + domain: string, +) { + assertWorkspaceId(workspaceId); + await callRpc(context, "claim_workspace_domain", { + p_workspace_id: workspaceId, + p_domain: domain, + }); +} + +export async function rotateWorkspaceScimToken( + context: TeamContext, + workspaceId: string, + domain: string, + token: string, +) { + assertWorkspaceId(workspaceId); + await callRpc(context, "rotate_workspace_scim_token", { + p_workspace_id: workspaceId, + p_domain: domain, + p_token: token, + }); +} + +export async function setWorkspacePolicy( + context: TeamContext, + workspaceId: string, + policy: WorkspacePolicy, +) { + assertWorkspaceId(workspaceId); + await callRpc(context, "set_workspace_policy", { + p_workspace_id: workspaceId, + p_allowed_share_scopes: policy.allowedShareScopes, + p_default_share_scope: policy.defaultShareScope, + p_retention_days: policy.retentionDays, + p_model_training_opt_out: policy.modelTrainingOptOut, + p_consent_notification_enabled: policy.consentNotificationEnabled, + p_require_sso: policy.requireSso, + }); +} + export async function listMyWorkspaces(context: TeamContext) { // RLS limits the embedded memberships to this account's own row, so the join // yields the caller's role without needing manager-only RPCs. diff --git a/apps/desktop/src/settings/team/index.test.tsx b/apps/desktop/src/settings/team/index.test.tsx index 4e7d63eea4..39278a1bc1 100644 --- a/apps/desktop/src/settings/team/index.test.tsx +++ b/apps/desktop/src/settings/team/index.test.tsx @@ -63,6 +63,10 @@ vi.mock("~/auth/billing-context", () => ({ useBillingAccess: () => mocks.billing, })); +vi.mock("~/env", () => ({ + env: { VITE_ENTERPRISE_API_URL: undefined }, +})); + vi.mock("./mirror", () => ({ MY_WORKSPACES_QUERY_KEY: "team-workspaces", useMyWorkspacesWithMirror: () => mocks.workspaces, @@ -83,6 +87,29 @@ vi.mock("./client", () => ({ revokeInvitation: mocks.client.revokeInvitation, setMemberRole: vi.fn(() => Promise.resolve()), transferOwnership: vi.fn(() => Promise.resolve()), + getWorkspaceUsageOverview: () => + Promise.resolve({ + memberCount: 1, + pendingInvitations: 0, + enrolledDevices: 0, + sharesCreated30d: 0, + shareAccessEvents30d: 0, + seatLimit: null, + usedSeats: 1, + isBilled: false, + }), + getWorkspacePolicy: () => + Promise.resolve({ + allowedShareScopes: ["restricted", "workspace", "link", "public"], + defaultShareScope: "restricted", + retentionDays: null, + modelTrainingOptOut: true, + consentNotificationEnabled: true, + requireSso: false, + }), + setWorkspacePolicy: vi.fn(() => Promise.resolve()), + claimWorkspaceDomain: vi.fn(() => Promise.resolve()), + rotateWorkspaceScimToken: vi.fn(() => Promise.resolve()), })); import { SettingsTeam } from "./index"; diff --git a/apps/desktop/src/settings/team/index.tsx b/apps/desktop/src/settings/team/index.tsx index f3facd0933..4ceded540e 100644 --- a/apps/desktop/src/settings/team/index.tsx +++ b/apps/desktop/src/settings/team/index.tsx @@ -21,11 +21,15 @@ import { SelectTrigger, SelectValue, } from "@anlg/ui/components/ui/select"; +import { Switch } from "@anlg/ui/components/ui/switch"; import { cn } from "@anlg/utils"; import { + claimWorkspaceDomain, createWorkspace, deleteWorkspace, + getWorkspacePolicy, + getWorkspaceUsageOverview, inviteMember, leaveWorkspace, listWorkspaceInvitations, @@ -34,15 +38,23 @@ import { renameWorkspace, requireTeamContext, revokeInvitation, + rotateWorkspaceScimToken, setMemberRole, + setWorkspacePolicy, transferOwnership, type WorkspaceMember, + type WorkspacePolicy, type WorkspaceRole, } from "./client"; import { MY_WORKSPACES_QUERY_KEY, useMyWorkspacesWithMirror } from "./mirror"; import { useAuth } from "~/auth"; import { useBillingAccess } from "~/auth/billing-context"; +import { + cancelScheduledCapture, + listScheduledCaptures, +} from "~/enterprise-capture/client"; +import { env } from "~/env"; import { SettingsPageTitle } from "~/settings/page-title"; export function SettingsTeam() { @@ -267,6 +279,21 @@ function WorkspacePanel({ listWorkspaceInvitations(requireTeamContext(auth), workspaceId), retry: false, }); + const usage = useQuery({ + queryKey: ["team-usage", workspaceId], + queryFn: () => + getWorkspaceUsageOverview(requireTeamContext(auth), workspaceId), + retry: false, + enabled: + hasProAccess && (workspaceRole === "owner" || workspaceRole === "admin"), + }); + const policy = useQuery({ + queryKey: ["team-policy", workspaceId], + queryFn: () => getWorkspacePolicy(requireTeamContext(auth), workspaceId), + retry: false, + enabled: + hasProAccess && (workspaceRole === "owner" || workspaceRole === "admin"), + }); const refresh = () => { void queryClient.invalidateQueries({ @@ -275,6 +302,12 @@ function WorkspacePanel({ void queryClient.invalidateQueries({ queryKey: ["team-invitations", workspaceId], }); + void queryClient.invalidateQueries({ + queryKey: ["team-usage", workspaceId], + }); + void queryClient.invalidateQueries({ + queryKey: ["team-policy", workspaceId], + }); }; const invite = useMutation({ @@ -527,6 +560,61 @@ function WorkspacePanel({ )} + {canManage && usage.data && ( +
+

+ Usage +

+

+ + Workspace activity from metadata only. Note content stays + unreadable on the server. + +

+
+
+
+ Members +
+
{usage.data.memberCount}
+
+
+
+ Seats +
+
+ {usage.data.usedSeats} + {usage.data.seatLimit != null + ? ` / ${usage.data.seatLimit}` + : ""} +
+
+
+
+ Devices +
+
{usage.data.enrolledDevices}
+
+
+
+ Shares (30d) +
+
{usage.data.sharesCreated30d}
+
+
+
+ )} + + {canManage && policy.data && ( + + )} + + +

{viewerRole === "owner" ? ( @@ -570,6 +658,271 @@ function WorkspacePanel({ ); } +function UpcomingCaptureBots({ workspaceId }: { workspaceId: string }) { + const auth = useAuth(); + const queryClient = useQueryClient(); + const serverUrl = env.VITE_ENTERPRISE_API_URL; + const accessToken = auth.session?.access_token; + const upcoming = useQuery({ + queryKey: ["scheduled-captures", workspaceId], + enabled: Boolean(serverUrl && accessToken), + retry: false, + queryFn: () => + listScheduledCaptures({ + serverUrl: serverUrl!, + accessToken: accessToken!, + workspaceId, + }), + }); + const cancel = useMutation({ + mutationFn: (calendarEventId: string) => + cancelScheduledCapture({ + serverUrl: serverUrl!, + accessToken: accessToken!, + workspaceId, + calendarEventId, + }), + onSuccess: () => { + void queryClient.invalidateQueries({ + queryKey: ["scheduled-captures", workspaceId], + }); + }, + }); + + if (!serverUrl) return null; + + const visible = (upcoming.data ?? []).filter( + (capture) => + capture.status === "pending" || capture.status === "dispatched", + ); + + return ( +

+

+ Upcoming bot attendance +

+

+ + Calendar-scheduled capture jobs. Canceling stops the bot from joining. + +

+ {upcoming.isPending ? ( +

+ Loading scheduled captures… +

+ ) : upcoming.error ? ( +

+ {upcoming.error.message} +

+ ) : visible.length === 0 ? ( +

+ No upcoming bots. +

+ ) : ( +
    + {visible.map((capture) => ( +
  • +
    +

    {capture.title}

    +

    + {new Date(capture.startsAt).toLocaleString()} +

    +
    + +
  • + ))} +
+ )} +
+ ); +} + +function WorkspacePolicyForm({ + workspaceId, + policy, + onSaved, +}: { + workspaceId: string; + policy: WorkspacePolicy; + onSaved: () => void; +}) { + const auth = useAuth(); + const { t } = useLingui(); + const [retention, setRetention] = useState( + policy.retentionDays?.toString() ?? "", + ); + const [allowLink, setAllowLink] = useState( + policy.allowedShareScopes.includes("link"), + ); + const [allowPublic, setAllowPublic] = useState( + policy.allowedShareScopes.includes("public"), + ); + const [requireSso, setRequireSso] = useState(policy.requireSso); + const [domain, setDomain] = useState(""); + const [scimToken, setScimToken] = useState(""); + const save = useMutation({ + mutationFn: () => { + const allowedShareScopes: WorkspacePolicy["allowedShareScopes"] = [ + "restricted", + "workspace", + ...(allowLink ? (["link"] as const) : []), + ...(allowPublic ? (["public"] as const) : []), + ]; + const retentionDays = retention.trim() === "" ? null : Number(retention); + return setWorkspacePolicy(requireTeamContext(auth), workspaceId, { + ...policy, + allowedShareScopes, + retentionDays: + retentionDays != null && Number.isFinite(retentionDays) + ? retentionDays + : null, + requireSso, + }); + }, + onSuccess: onSaved, + }); + const claimDomain = useMutation({ + mutationFn: (value: string) => + claimWorkspaceDomain(requireTeamContext(auth), workspaceId, value), + onSuccess: onSaved, + }); + const rotateScim = useMutation({ + mutationFn: () => + rotateWorkspaceScimToken( + requireTeamContext(auth), + workspaceId, + domain.trim(), + scimToken.trim(), + ), + onSuccess: () => { + setScimToken(""); + onSaved(); + }, + }); + + return ( +
+

+ Policies +

+

+ + These rules apply to every member. Sharing changes fail closed on the + server. + +

+
+ + + + + + {save.error?.message ? ( +

{save.error.message}

+ ) : null} +
{ + event.preventDefault(); + if (domain.trim()) claimDomain.mutate(domain.trim()); + }} + > + + +
+
{ + event.preventDefault(); + if (domain.trim() && scimToken.trim().length >= 32) { + rotateScim.mutate(); + } + }} + > + + +
+
+
+ ); +} + function MemberRow({ member, isViewer, diff --git a/apps/desktop/src/stt/meeting-chat-capture.test.ts b/apps/desktop/src/stt/meeting-chat-capture.test.ts index 29d333b5ce..8d9b01d70a 100644 --- a/apps/desktop/src/stt/meeting-chat-capture.test.ts +++ b/apps/desktop/src/stt/meeting-chat-capture.test.ts @@ -8,6 +8,7 @@ const { captureMeetingChatMessagesMock, listMicUsingApplicationsMock, persistMeetingChatRecordsMock, + persistParticipantConsentMock, sonnerToastWarningMock, sonnerToastDismissMock, captureSettingState, @@ -15,6 +16,7 @@ const { captureMeetingChatMessagesMock: vi.fn(), listMicUsingApplicationsMock: vi.fn(), persistMeetingChatRecordsMock: vi.fn(), + persistParticipantConsentMock: vi.fn(), sonnerToastWarningMock: vi.fn(), sonnerToastDismissMock: vi.fn(), captureSettingState: { value: true }, @@ -31,6 +33,10 @@ vi.mock("~/stt/meeting-chat-records", () => ({ persistMeetingChatRecords: persistMeetingChatRecordsMock, })); +vi.mock("~/stt/meeting-consent-store", () => ({ + persistParticipantConsent: persistParticipantConsentMock, +})); + vi.mock("@anlg/ui/components/ui/toast", () => ({ sonnerToast: { warning: sonnerToastWarningMock, @@ -72,6 +78,7 @@ describe("startMeetingChatCapture", () => { async ({ entries }: { entries: Array<{ sourceSignature: string }> }) => entries.map((entry) => entry.sourceSignature), ); + persistParticipantConsentMock.mockResolvedValue(undefined); }); afterEach(() => { @@ -631,6 +638,38 @@ describe("startMeetingChatCapture", () => { }, ); }); + + test("stops listening after an explicit chat decline without treating disclosure as consent", async () => { + const onParticipantDeclined = vi.fn(); + const stop = startMeetingChatCapture({ + sessionId: "session-1", + isEnabled: () => true, + onParticipantDeclined, + }); + await vi.advanceTimersByTimeAsync(0); + + const decline = { + ...capturedMessage, + id: "msg-decline", + text: "I do not consent", + links: [], + }; + captureMeetingChatMessagesMock.mockResolvedValue( + captureResult([capturedMessage, decline]), + ); + await vi.advanceTimersByTimeAsync(5_000); + stop(); + + expect(persistParticipantConsentMock).toHaveBeenCalledWith( + expect.objectContaining({ + sessionId: "session-1", + participantKey: "Ada", + status: "declined", + source: "explicit_chat_reply", + }), + ); + expect(onParticipantDeclined).toHaveBeenCalledOnce(); + }); }); function captureResult( diff --git a/apps/desktop/src/stt/meeting-chat-capture.ts b/apps/desktop/src/stt/meeting-chat-capture.ts index da68a03d92..18eda0b284 100644 --- a/apps/desktop/src/stt/meeting-chat-capture.ts +++ b/apps/desktop/src/stt/meeting-chat-capture.ts @@ -5,6 +5,13 @@ import { sonnerToast } from "@anlg/ui/components/ui/toast"; import { getStoredSettingValues } from "~/settings/queries"; import { resolveConfigValue } from "~/shared/config"; import { persistMeetingChatRecords } from "~/stt/meeting-chat-records"; +import { + interpretChatAsConsentResponse, + sessionListeningPolicy, + type ParticipantConsent, +} from "~/stt/meeting-consent"; +import { persistParticipantConsent } from "~/stt/meeting-consent-store"; +import { MEETING_DISCLOSURE_MESSAGE } from "~/stt/meeting-disclosure"; const MEETING_CHAT_CAPTURE_INTERVAL_MS = 5_000; const MAX_CAPTURED_CHAT_WINDOW = 1_000; @@ -13,10 +20,12 @@ export function startMeetingChatCapture({ sessionId, isEnabled, excludedTexts = [], + onParticipantDeclined, }: { sessionId: string; isEnabled?: () => boolean | Promise; excludedTexts?: string[]; + onParticipantDeclined?: () => void; }) { sonnerToast.dismiss("meeting-chat-capture-warning"); const excludedMessages = new Set(excludedTexts.map(normalizeMessageText)); @@ -156,6 +165,39 @@ export function startMeetingChatCapture({ for (const signature of persistedSignatures) { rememberSignature(seenSignatures, signature); } + + const consents: ParticipantConsent[] = []; + for (const entry of entries) { + if (!persistedSignatures.includes(entry.sourceSignature)) { + continue; + } + const response = interpretChatAsConsentResponse( + entry.message.text, + MEETING_DISCLOSURE_MESSAGE, + ); + if (!response) { + continue; + } + const consent: ParticipantConsent = { + sessionId, + participantKey: entry.message.sender?.trim() || "unidentified", + status: response, + source: "explicit_chat_reply", + updatedAt: new Date().toISOString(), + }; + consents.push(consent); + try { + await persistParticipantConsent(consent); + } catch (error) { + console.warn( + "[listener] failed to persist participant consent", + error, + ); + } + } + if (sessionListeningPolicy(consents) === "stop_declined" && !stopped) { + onParticipantDeclined?.(); + } } catch (error) { console.warn("[listener] failed to capture meeting chat", error); } diff --git a/apps/desktop/src/stt/meeting-consent-store.ts b/apps/desktop/src/stt/meeting-consent-store.ts new file mode 100644 index 0000000000..ccb2649ba3 --- /dev/null +++ b/apps/desktop/src/stt/meeting-consent-store.ts @@ -0,0 +1,54 @@ +import type { DisclosureAttempt, ParticipantConsent } from "./meeting-consent"; + +import { executeTransaction } from "~/db"; + +export async function persistDisclosureAttempt( + attempt: DisclosureAttempt, +): Promise { + await executeTransaction([ + { + sql: ` + INSERT INTO session_disclosure_attempts ( + id, session_id, attempted_at, platform, surface, + message_version, message, delivery, failure_reason + ) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) + `, + params: [ + attempt.id, + attempt.sessionId, + attempt.attemptedAt, + attempt.platform, + attempt.surface, + attempt.messageVersion, + attempt.message, + attempt.delivery, + attempt.failureReason, + ], + }, + ]); +} + +export async function persistParticipantConsent( + consent: ParticipantConsent, +): Promise { + await executeTransaction([ + { + sql: ` + INSERT INTO session_participant_consent ( + session_id, participant_key, status, source, updated_at + ) VALUES (?, ?, ?, ?, ?) + ON CONFLICT(session_id, participant_key) DO UPDATE SET + status = excluded.status, + source = excluded.source, + updated_at = excluded.updated_at + `, + params: [ + consent.sessionId, + consent.participantKey, + consent.status, + consent.source, + consent.updatedAt, + ], + }, + ]); +} diff --git a/apps/desktop/src/stt/meeting-consent.test.ts b/apps/desktop/src/stt/meeting-consent.test.ts new file mode 100644 index 0000000000..438c28dfa8 --- /dev/null +++ b/apps/desktop/src/stt/meeting-consent.test.ts @@ -0,0 +1,108 @@ +import { describe, expect, it } from "vitest"; + +import { + applyDisclosureAttempt, + applyExplicitConsentResponse, + applyLateJoiner, + interpretChatAsConsentResponse, + sessionHasLegalConsent, + sessionListeningPolicy, + type DisclosureAttempt, +} from "./meeting-consent"; + +const DISCLOSURE = + "I'm using Anarlog to record and transcribe this meeting. https://anarlog.so"; + +function attempt( + delivery: DisclosureAttempt["delivery"] = "sent", +): DisclosureAttempt { + return { + id: "attempt-1", + sessionId: "session-1", + attemptedAt: "2026-08-21T00:00:00.000Z", + platform: "slack_huddle", + surface: "huddle", + messageVersion: "anarlog-disclosure-v1", + message: DISCLOSURE, + delivery, + failureReason: "", + }; +} + +describe("meeting consent model", () => { + it("does not treat a sent disclosure as participant consent", () => { + const consents = applyDisclosureAttempt([], attempt("sent")); + expect(consents).toEqual([]); + expect(sessionHasLegalConsent(consents, [attempt("sent")])).toBe(false); + expect(sessionListeningPolicy(consents)).toBe("continue"); + }); + + it("keeps late joiners unknown until they answer explicitly", () => { + const consents = applyLateJoiner( + [], + "session-1", + "late-joiner", + "2026-08-21T00:01:00.000Z", + ); + expect(consents).toEqual([ + { + sessionId: "session-1", + participantKey: "late-joiner", + status: "unknown", + source: "unseen", + updatedAt: "2026-08-21T00:01:00.000Z", + }, + ]); + expect(sessionHasLegalConsent(consents, [attempt("sent")])).toBe(false); + }); + + it("stops listening only after an explicit decline, not after delivery", () => { + const declined = applyExplicitConsentResponse([], { + sessionId: "session-1", + participantKey: "ada", + status: "declined", + source: "explicit_chat_reply", + updatedAt: "2026-08-21T00:02:00.000Z", + }); + expect(sessionListeningPolicy(declined)).toBe("stop_declined"); + expect(sessionHasLegalConsent(declined, [attempt("sent")])).toBe(false); + }); + + it("records per-participant consent without claiming legal consent for the room", () => { + const consents = applyExplicitConsentResponse([], { + sessionId: "session-1", + participantKey: "ada", + status: "consented", + source: "explicit_chat_reply", + updatedAt: "2026-08-21T00:02:00.000Z", + }); + expect(consents[0]?.status).toBe("consented"); + expect(sessionHasLegalConsent(consents, [attempt("sent")])).toBe(false); + expect(sessionListeningPolicy(consents)).toBe("continue"); + }); + + it("ignores the disclosure text itself when classifying chat replies", () => { + expect(interpretChatAsConsentResponse(DISCLOSURE, DISCLOSURE)).toBeNull(); + expect(interpretChatAsConsentResponse("I do not consent", DISCLOSURE)).toBe( + "declined", + ); + expect(interpretChatAsConsentResponse("I consent", DISCLOSURE)).toBe( + "consented", + ); + expect( + interpretChatAsConsentResponse("sounds good", DISCLOSURE), + ).toBeNull(); + }); + + it("rejects unseen as an explicit consent source", () => { + expect(() => + applyExplicitConsentResponse([], { + sessionId: "session-1", + participantKey: "ada", + status: "consented", + source: "unseen", + updatedAt: "2026-08-21T00:02:00.000Z", + }), + ).toThrow(/unseen/); + }); +}); diff --git a/apps/desktop/src/stt/meeting-consent.ts b/apps/desktop/src/stt/meeting-consent.ts new file mode 100644 index 0000000000..1cb0d0e0b6 --- /dev/null +++ b/apps/desktop/src/stt/meeting-consent.ts @@ -0,0 +1,133 @@ +export const MEETING_DISCLOSURE_MESSAGE_VERSION = "anarlog-disclosure-v1"; + +export type DisclosureDelivery = "sent" | "not_sent" | "cancelled"; + +export type DisclosurePlatform = + | "slack_huddle" + | "zoom" + | "google_meet" + | "teams" + | "webex" + | "browser" + | "unknown"; + +export type DisclosureAttempt = { + id: string; + sessionId: string; + attemptedAt: string; + platform: DisclosurePlatform; + surface: string; + messageVersion: string; + message: string; + delivery: DisclosureDelivery; + failureReason: string; +}; + +export type ParticipantConsentStatus = "unknown" | "consented" | "declined"; + +export type ParticipantConsentSource = + | "explicit_chat_reply" + | "explicit_ui" + | "unseen"; + +export type ParticipantConsent = { + sessionId: string; + participantKey: string; + status: ParticipantConsentStatus; + source: ParticipantConsentSource; + updatedAt: string; +}; + +export type SessionListeningPolicy = "continue" | "stop_declined"; + +const DECLINE_PATTERN = + /\b((i\s+)?(do\s+not|don't|does\s+not|doesn't)\s+consent|stop\s+recording)\b/i; +const CONSENT_PATTERN = /\b(i\s+consent|i\s+agree\s+to\s+(being\s+)?record)/i; + +export function applyDisclosureAttempt( + consents: readonly ParticipantConsent[], + _attempt: DisclosureAttempt, +): ParticipantConsent[] { + return [...consents]; +} + +export function applyLateJoiner( + consents: readonly ParticipantConsent[], + sessionId: string, + participantKey: string, + updatedAt: string, +): ParticipantConsent[] { + if ( + consents.some( + (consent) => + consent.sessionId === sessionId && + consent.participantKey === participantKey, + ) + ) { + return [...consents]; + } + return [ + ...consents, + { + sessionId, + participantKey, + status: "unknown", + source: "unseen", + updatedAt, + }, + ]; +} + +export function applyExplicitConsentResponse( + consents: readonly ParticipantConsent[], + next: ParticipantConsent, +): ParticipantConsent[] { + if (next.source === "unseen") { + throw new Error("explicit consent cannot use the unseen source"); + } + const without = consents.filter( + (consent) => + !( + consent.sessionId === next.sessionId && + consent.participantKey === next.participantKey + ), + ); + return [...without, next]; +} + +export function interpretChatAsConsentResponse( + text: string, + disclosureMessage: string, +): ParticipantConsentStatus | null { + const normalized = text.replace(/\s+/g, " ").trim(); + if (!normalized) { + return null; + } + if (normalized === disclosureMessage.replace(/\s+/g, " ").trim()) { + return null; + } + if (DECLINE_PATTERN.test(normalized)) { + return "declined"; + } + if (CONSENT_PATTERN.test(normalized)) { + return "consented"; + } + return null; +} + +export function sessionListeningPolicy( + consents: readonly ParticipantConsent[], +): SessionListeningPolicy { + return consents.some((consent) => consent.status === "declined") + ? "stop_declined" + : "continue"; +} + +export function sessionHasLegalConsent( + consents: readonly ParticipantConsent[], + disclosureAttempts: readonly DisclosureAttempt[], +): boolean { + void consents; + void disclosureAttempts; + return false; +} diff --git a/apps/desktop/src/stt/meeting-disclosure.ts b/apps/desktop/src/stt/meeting-disclosure.ts index 5aea440540..857c8f02d2 100644 --- a/apps/desktop/src/stt/meeting-disclosure.ts +++ b/apps/desktop/src/stt/meeting-disclosure.ts @@ -1,6 +1,12 @@ import { commands as detectCommands } from "@anlg/plugin-detect"; import { sonnerToast } from "@anlg/ui/components/ui/toast"; +import { + MEETING_DISCLOSURE_MESSAGE_VERSION, + type DisclosureAttempt, +} from "./meeting-consent"; +import { persistDisclosureAttempt } from "./meeting-consent-store"; + export const MEETING_DISCLOSURE_MESSAGE = "I'm using Anarlog to record and transcribe this meeting. https://anarlog.so"; @@ -56,6 +62,42 @@ function rememberSentMeetingDisclosure(sessionId: string) { } } +async function recordDisclosureAttempt(input: { + sessionId?: string; + delivery: DisclosureAttempt["delivery"]; + failureReason?: unknown; + surface?: string; +}) { + if (!input.sessionId) { + return; + } + + const failureReason = + input.failureReason instanceof Error + ? input.failureReason.message + : input.failureReason + ? String(input.failureReason) + : ""; + + try { + await persistDisclosureAttempt({ + id: + globalThis.crypto?.randomUUID?.() ?? + `disclosure-${Date.now()}-${Math.random()}`, + sessionId: input.sessionId, + attemptedAt: new Date().toISOString(), + platform: "slack_huddle", + surface: input.surface ?? "huddle", + messageVersion: MEETING_DISCLOSURE_MESSAGE_VERSION, + message: MEETING_DISCLOSURE_MESSAGE, + delivery: input.delivery, + failureReason, + }); + } catch (error) { + console.warn("[listener] failed to persist disclosure attempt", error); + } +} + function meetingDisclosureFailure(reason: unknown): MeetingDisclosureOutcome { const detail = reason instanceof Error ? reason.message : String(reason); console.warn("[listener] meeting disclosure was not sent", reason); @@ -142,10 +184,12 @@ async function attemptMeetingRecordingDisclosure( } export async function sendMeetingRecordingDisclosure({ + sessionId, isCancelled = () => false, maxAttempts = MEETING_DISCLOSURE_MAX_ATTEMPTS, retryIntervalMs = MEETING_DISCLOSURE_RETRY_INTERVAL_MS, }: { + sessionId?: string; isCancelled?: () => boolean; maxAttempts?: number; retryIntervalMs?: number; @@ -155,6 +199,10 @@ export async function sendMeetingRecordingDisclosure({ for (let attempt = 0; attempt < Math.max(1, maxAttempts); attempt += 1) { const outcome = await attemptMeetingRecordingDisclosure(isCancelled); if (outcome.status !== "notSent") { + await recordDisclosureAttempt({ + sessionId, + delivery: outcome.status === "sent" ? "sent" : "cancelled", + }); return outcome; } @@ -164,11 +212,20 @@ export async function sendMeetingRecordingDisclosure({ setTimeout(resolve, retryIntervalMs); }); if (isCancelled()) { + await recordDisclosureAttempt({ + sessionId, + delivery: "cancelled", + }); return { status: "cancelled" }; } } } + await recordDisclosureAttempt({ + sessionId, + delivery: "not_sent", + failureReason: lastFailureReason, + }); return meetingDisclosureFailure(lastFailureReason); } @@ -194,6 +251,7 @@ export function startMeetingRecordingDisclosure( meetingDisclosureTasks.set(sessionId, task); void sendMeetingRecordingDisclosure({ + sessionId, isCancelled: () => task.cancelled || !isListening(), }).then( (outcome) => { diff --git a/apps/desktop/src/stt/useStartListening.test.ts b/apps/desktop/src/stt/useStartListening.test.ts index c9da47c689..f4f3efdb31 100644 --- a/apps/desktop/src/stt/useStartListening.test.ts +++ b/apps/desktop/src/stt/useStartListening.test.ts @@ -26,6 +26,7 @@ const { finishCaptureRecoveryFinalizationMock, canStartLiveSessionMock, startMock, + stopMock, getSessionModeMock, setBatchTranscriptionPendingMock, runBatchMock, @@ -77,6 +78,7 @@ const { finishCaptureRecoveryFinalizationMock: vi.fn(), canStartLiveSessionMock: vi.fn(), startMock: vi.fn(), + stopMock: vi.fn(), getSessionModeMock: vi.fn(), setBatchTranscriptionPendingMock: vi.fn(), runBatchMock: vi.fn(), @@ -146,6 +148,11 @@ vi.mock("@anlg/plugin-detect", () => ({ }, })); +vi.mock("./meeting-consent-store", () => ({ + persistDisclosureAttempt: vi.fn(async () => {}), + persistParticipantConsent: vi.fn(async () => {}), +})); + vi.mock("@anlg/plugin-fs-sync", () => ({ commands: { audioPath: audioPathMock, @@ -451,6 +458,7 @@ describe("useStartListening", () => { getSessionMode: getSessionModeMock, setBatchTranscriptionPending: setBatchTranscriptionPendingMock, start: startMock, + stop: stopMock, }), ); beginCaptureRecoveryFinalizationMock.mockReturnValue(true); @@ -3668,6 +3676,7 @@ describe("useStartListening", () => { excludedTexts: [ "I'm using Anarlog to record and transcribe this meeting. https://anarlog.so", ], + onParticipantDeclined: expect.any(Function), }); }); @@ -3706,6 +3715,7 @@ describe("useStartListening", () => { excludedTexts: [ "I'm using Anarlog to record and transcribe this meeting. https://anarlog.so", ], + onParticipantDeclined: expect.any(Function), }); }); diff --git a/apps/desktop/src/stt/useStartListening.ts b/apps/desktop/src/stt/useStartListening.ts index 0ff7fb86b5..b3eee0659d 100644 --- a/apps/desktop/src/stt/useStartListening.ts +++ b/apps/desktop/src/stt/useStartListening.ts @@ -54,6 +54,7 @@ export function useStartListening(sessionId: string) { ); const start = useListener((state) => state.start); + const stop = useListener((state) => state.stop); const { leftsidebar } = useShell(); const setLeftSidebarExpanded = leftsidebar.setExpanded; const openNew = useTabs((state) => state.openNew); @@ -220,6 +221,13 @@ export function useStartListening(sessionId: string) { startMeetingChatCapture({ sessionId, excludedTexts: [MEETING_DISCLOSURE_MESSAGE], + onParticipantDeclined: () => { + sonnerToast.warning( + "A participant declined recording. Anarlog stopped listening.", + { id: "meeting-consent-declined", duration: Infinity }, + ); + stop(); + }, }), ); @@ -259,6 +267,7 @@ export function useStartListening(sessionId: string) { meetingDisclosureAutoSendChat, spokenLanguages, start, + stop, stopMeetingChatTasks, ]); diff --git a/apps/web/src/functions/auth.ts b/apps/web/src/functions/auth.ts index ee490e778f..4ab05817cf 100644 --- a/apps/web/src/functions/auth.ts +++ b/apps/web/src/functions/auth.ts @@ -270,6 +270,35 @@ export const doAuth = createServerFn({ method: "POST" }) return { success: true, url: authData.url }; }); +export const doSsoAuth = createServerFn({ method: "POST" }) + .inputValidator( + shared.extend({ + domain: z + .string() + .trim() + .min(1) + .max(253) + .regex(/^[a-z0-9.-]+$/i), + }), + ) + .handler(async ({ data }) => { + const supabase = getSupabaseServerClient(); + const params = buildAuthCallbackParams(data); + + const { data: authData, error } = await supabase.auth.signInWithSSO({ + domain: data.domain.toLowerCase(), + options: { + redirectTo: buildAuthCallbackUrl(params), + }, + }); + + if (error) { + return { error: true, message: error.message }; + } + + return { success: true, url: authData.url }; + }); + export const doMagicLinkAuth = createServerFn({ method: "POST" }) .inputValidator( shared.extend({ diff --git a/apps/web/src/routes/auth.tsx b/apps/web/src/routes/auth.tsx index 5c1d82d79b..f44e565644 100644 --- a/apps/web/src/routes/auth.tsx +++ b/apps/web/src/routes/auth.tsx @@ -20,6 +20,7 @@ import { doMagicLinkAuth, doPasswordSignIn, doPasswordSignUp, + doSsoAuth, fetchUser, } from "@/functions/auth"; import { @@ -86,7 +87,7 @@ export const Route = createFileRoute("/auth")({ }, }); -type AuthView = "main" | "email"; +type AuthView = "main" | "email" | "sso"; type OAuthProvider = "azure" | "github" | "google"; function getOAuthProviderName(provider: OAuthProvider) { @@ -180,6 +181,14 @@ function Component() { Sign in with Email )} + {showEmail && ( + + )}
@@ -192,6 +201,14 @@ function Component() { onBack={() => setView("main")} /> )} + {view === "sso" && ( + setView("main")} + /> + )} ); } @@ -260,6 +277,7 @@ function DesktopReauthView({ + )} @@ -351,6 +369,97 @@ function EmailAuthView({ ); } +function SsoAuthView({ + flow, + scheme, + redirect, + onBack, +}: { + flow: "desktop" | "web"; + scheme?: DesktopScheme; + redirect?: string; + onBack?: () => void; +}) { + const [domain, setDomain] = useState(""); + const ssoMutation = useMutation({ + mutationFn: () => { + capturePrivateRouteEvent("auth_started", { + method: "sso", + flow, + }); + return doSsoAuth({ + data: { + domain, + flow, + scheme, + redirect, + }, + }); + }, + onSuccess: (result) => { + if (result?.url) { + window.location.href = result.url; + return; + } + capturePrivateRouteEvent("auth_failed", { + method: "sso", + flow, + failure_stage: "provider", + }); + }, + onError: () => { + capturePrivateRouteEvent("auth_failed", { + method: "sso", + flow, + failure_stage: "request", + }); + }, + }); + + return ( +
+ {onBack ? ( + + ) : null} +
{ + event.preventDefault(); + if (domain.trim()) ssoMutation.mutate(); + }} + > + setDomain(event.target.value)} + className={authInputClassName} + /> + + {ssoMutation.data && + "error" in ssoMutation.data && + ssoMutation.data.error ? ( +

{ssoMutation.data.message}

+ ) : null} +
+ {onBack ? : null} +
+ ); +} + function PasswordForm({ flow, scheme, diff --git a/crates/api-subscription/src/cleanup_worker.rs b/crates/api-subscription/src/cleanup_worker.rs index 3a619bcd16..7223dbf1f1 100644 --- a/crates/api-subscription/src/cleanup_worker.rs +++ b/crates/api-subscription/src/cleanup_worker.rs @@ -3,6 +3,7 @@ use std::time::Duration; use chrono::{DateTime, TimeDelta, Utc}; use futures_util::{StreamExt, stream}; use serde::{Deserialize, Serialize}; +use serde_json::json; use stripe_core::customer::{DeleteCustomer, RetrieveCustomer, RetrieveCustomerReturned}; use tokio::time::MissedTickBehavior; use tokio_util::sync::CancellationToken; @@ -181,11 +182,25 @@ impl CleanupWorker { 0 } }; + if let Err(error) = self.run_retention_batch().await { + tracing::warn!(error = %error, "workspace_retention_batch_failed"); + } attachment_count == ATTACHMENT_BATCH_SIZE || shared_attachment_count == ATTACHMENT_BATCH_SIZE || account_count == ACCOUNT_BATCH_SIZE } + async fn run_retention_batch(&self) -> Result { + let deleted: i32 = self + .supabase + .admin_rpc("enforce_workspace_retention", &json!({})) + .await?; + if deleted < 0 { + return Err(invalid_upstream("workspace retention deleted count")); + } + Ok(deleted) + } + async fn run_attachment_batch(&self, cancellation: &CancellationToken) -> Result { if cancellation.is_cancelled() { return Ok(0); diff --git a/crates/api-subscription/src/lib.rs b/crates/api-subscription/src/lib.rs index 644320d4f8..992294db61 100644 --- a/crates/api-subscription/src/lib.rs +++ b/crates/api-subscription/src/lib.rs @@ -14,4 +14,4 @@ pub use cleanup_worker::CleanupWorker; pub use config::{CloudsyncCleanupConfig, SubscriptionConfig}; pub use env::StripeEnv; pub use openapi::openapi; -pub use routes::router; +pub use routes::{router, scim_router}; diff --git a/crates/api-subscription/src/routes/mod.rs b/crates/api-subscription/src/routes/mod.rs index d407cc38cc..4e348fbb9a 100644 --- a/crates/api-subscription/src/routes/mod.rs +++ b/crates/api-subscription/src/routes/mod.rs @@ -1,6 +1,7 @@ pub(crate) mod account; pub(crate) mod billing; pub(crate) mod rpc; +pub(crate) mod scim; use axum::{ Router, @@ -23,3 +24,9 @@ pub fn router(config: SubscriptionConfig) -> Router { .route("/delete-account", delete(account::delete_account)) .with_state(state) } + +pub fn scim_router(config: SubscriptionConfig) -> Router { + Router::new() + .merge(scim::router()) + .with_state(AppState::new(config)) +} diff --git a/crates/api-subscription/src/routes/scim.rs b/crates/api-subscription/src/routes/scim.rs new file mode 100644 index 0000000000..cc2c446244 --- /dev/null +++ b/crates/api-subscription/src/routes/scim.rs @@ -0,0 +1,265 @@ +use axum::{ + Json, Router, + extract::{Path, State}, + http::{HeaderMap, StatusCode, header}, + response::{IntoResponse, Response}, + routing::{get, patch, post}, +}; +use serde::{Deserialize, Serialize}; +use serde_json::{Value, json}; + +use crate::state::AppState; + +pub fn router() -> Router { + Router::new() + .route("/ServiceProviderConfig", get(service_provider_config)) + .route("/Users", post(create_or_activate_user)) + .route("/Users/{user_id}", patch(patch_user).put(replace_user)) +} + +fn bearer_token(headers: &HeaderMap) -> Option { + let value = headers.get(header::AUTHORIZATION)?.to_str().ok()?; + let token = value.strip_prefix("Bearer ")?; + if token.len() < 32 || token.len() > 512 || token.chars().any(char::is_control) { + return None; + } + Some(token.to_string()) +} + +#[derive(Debug, Deserialize)] +#[serde(rename_all = "camelCase")] +struct ScimUserRequest { + #[serde(default)] + user_name: Option, + #[serde(default)] + active: Option, + #[serde(default)] + emails: Vec, +} + +#[derive(Debug, Deserialize)] +struct ScimEmail { + #[serde(default)] + value: Option, +} + +#[derive(Debug, Deserialize)] +struct ScimPatchRequest { + #[serde(default, alias = "Operations")] + operations: Vec, +} + +#[derive(Debug, Deserialize)] +struct ScimPatchOp { + #[serde(default)] + op: String, + #[serde(default)] + path: Option, + #[serde(default)] + value: Value, +} + +#[derive(Debug, Deserialize)] +struct ScimApplyRow { + user_id: String, + #[allow(dead_code)] + workspace_id: String, + active: bool, +} + +#[derive(Debug, Serialize)] +#[serde(rename_all = "camelCase")] +struct ScimUserResource { + schemas: [&'static str; 1], + id: String, + user_name: String, + active: bool, +} + +fn scim_error(status: StatusCode, detail: &str) -> Response { + ( + status, + Json(json!({ + "schemas": ["urn:ietf:params:scim:api:messages:2.0:Error"], + "status": status.as_u16().to_string(), + "detail": detail, + })), + ) + .into_response() +} + +fn email_from(request: &ScimUserRequest) -> Option { + request + .emails + .iter() + .find_map(|email| email.value.clone()) + .or_else(|| request.user_name.clone()) + .map(|value| value.trim().to_string()) + .filter(|value| value.contains('@') && value.len() <= 320) +} + +fn active_from_patch(request: &ScimPatchRequest) -> Option { + request.operations.iter().find_map(|operation| { + if !operation.op.eq_ignore_ascii_case("replace") { + return None; + } + let path = operation.path.as_deref().unwrap_or("active"); + if path != "active" && !path.ends_with(":active") { + return None; + } + operation.value.as_bool() + }) +} + +fn resource(email: &str, row: ScimApplyRow) -> ScimUserResource { + ScimUserResource { + schemas: ["urn:ietf:params:scim:schemas:core:2.0:User"], + id: row.user_id, + user_name: email.to_string(), + active: row.active, + } +} + +fn map_apply_error(error: crate::error::SubscriptionError) -> Response { + let message = error.to_string(); + if message.contains("42501") || message.contains("invalid scim token") { + scim_error(StatusCode::UNAUTHORIZED, "invalid bearer token") + } else if message.contains("P0002") || message.contains("scim user not found") { + scim_error(StatusCode::NOT_FOUND, "user not found") + } else { + tracing::error!(error = %error, "scim_apply_user_failed"); + scim_error(StatusCode::BAD_GATEWAY, "directory update failed") + } +} + +async fn apply_email( + state: &AppState, + token: &str, + email: &str, + active: bool, +) -> Result { + let rows: Vec = state + .supabase + .admin_rpc( + "scim_apply_user", + &json!({ + "p_token": token, + "p_email": email, + "p_active": active, + }), + ) + .await + .map_err(map_apply_error)?; + rows.into_iter() + .next() + .ok_or_else(|| scim_error(StatusCode::BAD_GATEWAY, "directory update failed")) +} + +async fn apply_user_id( + state: &AppState, + token: &str, + user_id: &str, + active: bool, +) -> Result { + let rows: Vec = state + .supabase + .admin_rpc( + "scim_apply_user_id", + &json!({ + "p_token": token, + "p_user_id": user_id, + "p_active": active, + }), + ) + .await + .map_err(map_apply_error)?; + rows.into_iter() + .next() + .ok_or_else(|| scim_error(StatusCode::BAD_GATEWAY, "directory update failed")) +} + +async fn service_provider_config() -> Json { + Json(json!({ + "schemas": ["urn:ietf:params:scim:schemas:core:2.0:ServiceProviderConfig"], + "patch": { "supported": true }, + "bulk": { "supported": false, "maxOperations": 0, "maxPayloadSize": 0 }, + "filter": { "supported": false, "maxResults": 0 }, + "changePassword": { "supported": false }, + "sort": { "supported": false }, + "etag": { "supported": false }, + "authenticationSchemes": [{ + "type": "oauthbearertoken", + "name": "OAuth Bearer Token", + "description": "Authentication scheme using the OAuth Bearer Token Standard", + "specUri": "https://www.rfc-editor.org/rfc/rfc6750.html", + "primary": true + }] + })) +} + +async fn create_or_activate_user( + State(state): State, + headers: HeaderMap, + Json(request): Json, +) -> Response { + let Some(token) = bearer_token(&headers) else { + return scim_error(StatusCode::UNAUTHORIZED, "invalid bearer token"); + }; + let Some(email) = email_from(&request) else { + return scim_error( + StatusCode::BAD_REQUEST, + "userName or emails.value is required", + ); + }; + match apply_email(&state, &token, &email, request.active.unwrap_or(true)).await { + Ok(row) => (StatusCode::CREATED, Json(resource(&email, row))).into_response(), + Err(response) => response, + } +} + +async fn patch_user( + State(state): State, + Path(user_id): Path, + headers: HeaderMap, + Json(request): Json, +) -> Response { + let Some(token) = bearer_token(&headers) else { + return scim_error(StatusCode::UNAUTHORIZED, "invalid bearer token"); + }; + let Some(active) = active_from_patch(&request) else { + return scim_error( + StatusCode::BAD_REQUEST, + "active replace operation is required", + ); + }; + let result = if user_id.contains('@') { + apply_email(&state, &token, &user_id, active).await + } else { + apply_user_id(&state, &token, &user_id, active).await + }; + match result { + Ok(row) => Json(resource(&user_id, row)).into_response(), + Err(response) => response, + } +} + +async fn replace_user( + State(state): State, + Path(_user_id): Path, + headers: HeaderMap, + Json(request): Json, +) -> Response { + let Some(token) = bearer_token(&headers) else { + return scim_error(StatusCode::UNAUTHORIZED, "invalid bearer token"); + }; + let Some(email) = email_from(&request) else { + return scim_error( + StatusCode::BAD_REQUEST, + "userName or emails.value is required", + ); + }; + match apply_email(&state, &token, &email, request.active.unwrap_or(true)).await { + Ok(row) => Json(resource(&email, row)).into_response(), + Err(response) => response, + } +} diff --git a/crates/db-app/migrations/20260821140000_session_consent_evidence.sql b/crates/db-app/migrations/20260821140000_session_consent_evidence.sql new file mode 100644 index 0000000000..ff1def5d50 --- /dev/null +++ b/crates/db-app/migrations/20260821140000_session_consent_evidence.sql @@ -0,0 +1,61 @@ +-- Local-only disclosure transport evidence and per-participant consent +-- state. These tables must never be CloudSync-enabled: a sent disclosure +-- is not legal consent and must not replicate as if it were. +CREATE TABLE IF NOT EXISTS session_disclosure_attempts ( + id TEXT PRIMARY KEY CHECK ( + id = trim(id) AND length(id) > 0 AND length(id) <= 128 + ), + session_id TEXT NOT NULL CHECK ( + session_id = trim(session_id) + AND length(session_id) > 0 + AND length(session_id) <= 128 + ), + attempted_at TEXT NOT NULL CHECK ( + attempted_at = trim(attempted_at) AND length(attempted_at) > 0 + ), + platform TEXT NOT NULL DEFAULT 'unknown' CHECK ( + platform IN ( + 'slack_huddle', + 'zoom', + 'google_meet', + 'teams', + 'webex', + 'browser', + 'unknown' + ) + ), + surface TEXT NOT NULL DEFAULT '' CHECK (length(surface) <= 128), + message_version TEXT NOT NULL DEFAULT 'anarlog-disclosure-v1' CHECK ( + length(message_version) BETWEEN 1 AND 64 + ), + message TEXT NOT NULL DEFAULT '' CHECK (length(CAST(message AS BLOB)) <= 4096), + delivery TEXT NOT NULL CHECK (delivery IN ('sent', 'not_sent', 'cancelled')), + failure_reason TEXT NOT NULL DEFAULT '' CHECK ( + length(CAST(failure_reason AS BLOB)) <= 2048 + ), + created_at TEXT NOT NULL DEFAULT (strftime('%Y-%m-%dT%H:%M:%fZ', 'now')) +) STRICT; + +CREATE INDEX IF NOT EXISTS idx_session_disclosure_attempts_session +ON session_disclosure_attempts (session_id, attempted_at); + +CREATE TABLE IF NOT EXISTS session_participant_consent ( + session_id TEXT NOT NULL CHECK ( + session_id = trim(session_id) + AND length(session_id) > 0 + AND length(session_id) <= 128 + ), + participant_key TEXT NOT NULL CHECK ( + participant_key = trim(participant_key) + AND length(participant_key) > 0 + AND length(participant_key) <= 256 + ), + status TEXT NOT NULL CHECK (status IN ('unknown', 'consented', 'declined')), + source TEXT NOT NULL CHECK ( + source IN ('explicit_chat_reply', 'explicit_ui', 'unseen') + ), + updated_at TEXT NOT NULL CHECK ( + updated_at = trim(updated_at) AND length(updated_at) > 0 + ), + PRIMARY KEY (session_id, participant_key) +) STRICT; diff --git a/crates/db-app/src/lib.rs b/crates/db-app/src/lib.rs index 23e5e26db8..94939bf3a3 100644 --- a/crates/db-app/src/lib.rs +++ b/crates/db-app/src/lib.rs @@ -389,6 +389,11 @@ pub const APP_MIGRATION_STEPS: &[anlg_db_migrate::MigrationStep] = &[ }, sql: include_str!("../migrations/20260820120000_session_locked.sql"), }, + anlg_db_migrate::MigrationStep { + id: "20260821140000_session_consent_evidence", + scope: anlg_db_migrate::MigrationScope::Plain, + sql: include_str!("../migrations/20260821140000_session_consent_evidence.sql"), + }, ]; pub fn schema() -> anlg_db_migrate::DbSchema { diff --git a/crates/db-app/src/schema_tests/consent.rs b/crates/db-app/src/schema_tests/consent.rs new file mode 100644 index 0000000000..8548e9751a --- /dev/null +++ b/crates/db-app/src/schema_tests/consent.rs @@ -0,0 +1,63 @@ +use super::*; + +#[tokio::test] +async fn consent_evidence_tables_stay_local_only() { + let db = test_db().await; + + sqlx::query( + "INSERT INTO session_disclosure_attempts ( + id, session_id, attempted_at, platform, surface, + message_version, message, delivery, failure_reason + ) VALUES ( + 'attempt-1', 'session-1', '2026-08-21T00:00:00Z', 'slack_huddle', 'huddle', + 'anarlog-disclosure-v1', 'disclosure', 'sent', '' + )", + ) + .execute(db.pool()) + .await + .unwrap(); + + sqlx::query( + "INSERT INTO session_participant_consent ( + session_id, participant_key, status, source, updated_at + ) VALUES ( + 'session-1', 'late-joiner', 'unknown', 'unseen', '2026-08-21T00:01:00Z' + )", + ) + .execute(db.pool()) + .await + .unwrap(); + + let delivery: String = sqlx::query_scalar( + "SELECT delivery FROM session_disclosure_attempts WHERE id = 'attempt-1'", + ) + .fetch_one(db.pool()) + .await + .unwrap(); + assert_eq!(delivery, "sent"); + + assert!( + !cloudsync_table_registry() + .iter() + .any(|table| table.table_name == "session_disclosure_attempts" + || table.table_name == "session_participant_consent") + ); + assert!(!E2EE_DOMAIN_TABLES.contains(&"session_disclosure_attempts")); + assert!(!E2EE_DOMAIN_TABLES.contains(&"session_participant_consent")); +} + +#[tokio::test] +async fn sent_disclosure_cannot_be_stored_as_a_consent_source() { + let db = test_db().await; + let error = sqlx::query( + "INSERT INTO session_participant_consent ( + session_id, participant_key, status, source, updated_at + ) VALUES ( + 'session-1', 'ada', 'consented', 'disclosure_sent', '2026-08-21T00:00:00Z' + )", + ) + .execute(db.pool()) + .await + .unwrap_err(); + assert!(error.to_string().contains("CHECK")); +} diff --git a/crates/db-app/src/schema_tests/migrations.rs b/crates/db-app/src/schema_tests/migrations.rs index d34e8771d4..4ea2141e2f 100644 --- a/crates/db-app/src/schema_tests/migrations.rs +++ b/crates/db-app/src/schema_tests/migrations.rs @@ -119,7 +119,9 @@ async fn migrations_apply_cleanly() { "search_index_dirty", "search_index_state", "session_attachments", + "session_disclosure_attempts", "session_documents", + "session_participant_consent", "session_participants", "session_share_activation", "session_share_sync_state", diff --git a/crates/db-app/src/schema_tests/mod.rs b/crates/db-app/src/schema_tests/mod.rs index 4d719679fc..c449e71214 100644 --- a/crates/db-app/src/schema_tests/mod.rs +++ b/crates/db-app/src/schema_tests/mod.rs @@ -169,6 +169,7 @@ async fn test_db_without_default_templates() -> Db { } mod attachments; +mod consent; mod encrypted_replica; mod entities; mod migrations; diff --git a/dprint.json b/dprint.json index 5f5907a692..724f2c7c9b 100644 --- a/dprint.json +++ b/dprint.json @@ -31,6 +31,7 @@ "**/migrations/**/*.sql", "**/tests/*.sql", "**/charts/**", + "**/helm/**/templates/**", "**/schema.json", "**/netlify/edge-functions" ], diff --git a/enterprise/Cargo.lock b/enterprise/Cargo.lock index 1cfcc72483..ca974c937d 100644 --- a/enterprise/Cargo.lock +++ b/enterprise/Cargo.lock @@ -59,6 +59,7 @@ dependencies = [ "anyhow", "async-trait", "axum", + "base64", "chrono", "db-app", "db-core", @@ -84,6 +85,7 @@ dependencies = [ name = "anarlog-enterprise-google-meet-worker" version = "0.1.0" dependencies = [ + "anyhow", "async-trait", "base64", "chrono", @@ -97,6 +99,8 @@ dependencies = [ "thiserror", "tokio", "tokio-tungstenite", + "tracing", + "tracing-subscriber", "url", ] @@ -116,6 +120,7 @@ dependencies = [ name = "anarlog-enterprise-zoom-rtms-worker" version = "0.1.0" dependencies = [ + "anyhow", "futures-util", "hmac", "meeting-capture", @@ -125,6 +130,8 @@ dependencies = [ "thiserror", "tokio", "tokio-tungstenite", + "tracing", + "tracing-subscriber", "url", ] @@ -606,6 +613,7 @@ name = "db-app" version = "0.1.0" dependencies = [ "base64", + "cloudsync", "db-core", "db-migrate", "e2ee", diff --git a/enterprise/README.md b/enterprise/README.md index 74cb1b58cc..b0f55c7544 100644 --- a/enterprise/README.md +++ b/enterprise/README.md @@ -5,3 +5,11 @@ This directory contains source-visible, commercially licensed Anarlog Enterprise Enterprise packages may depend on the MIT community layer. Community packages must never depend on this directory. Shared contracts and provider-neutral interfaces needed by independent clients belong in the community layer. Customer configuration, credentials, license-signing keys, and confidential deployment material must never be committed. Third-party material requires complete provenance and must retain its original notices. + +## Docs + +- Capture operations: `deploy/docs/operations.md` +- Zoom RTMS: `docs/zoom-rtms.md` +- Teams connector: `docs/teams-capture.md` +- Owned-stack planning: `docs/planning/` + diff --git a/enterprise/control-plane/Cargo.toml b/enterprise/control-plane/Cargo.toml index eab1a09f9a..d1a1980d6a 100644 --- a/enterprise/control-plane/Cargo.toml +++ b/enterprise/control-plane/Cargo.toml @@ -12,6 +12,7 @@ anlg-session-ingest.workspace = true anyhow.workspace = true async-trait.workspace = true axum = { workspace = true, features = ["json", "query", "tokio"] } +base64.workspace = true chrono = { workspace = true, features = ["serde"] } http.workspace = true serde = { workspace = true, features = ["derive"] } diff --git a/enterprise/control-plane/migrations/0005_scheduled_captures.sql b/enterprise/control-plane/migrations/0005_scheduled_captures.sql new file mode 100644 index 0000000000..20a7a31ac3 --- /dev/null +++ b/enterprise/control-plane/migrations/0005_scheduled_captures.sql @@ -0,0 +1,42 @@ +CREATE TABLE capture_policies ( + workspace_id TEXT PRIMARY KEY CHECK (length(workspace_id) BETWEEN 1 AND 128), + capture_enabled BOOLEAN NOT NULL DEFAULT false, + allowed_providers JSONB NOT NULL DEFAULT '["anarlog"]'::jsonb, + bot_name TEXT NOT NULL DEFAULT 'Anarlog Notetaker' + CHECK (length(bot_name) BETWEEN 1 AND 80), + disclosure_text TEXT CHECK ( + disclosure_text IS NULL OR length(disclosure_text) BETWEEN 1 AND 2048 + ), + skip_if_desktop_capture BOOLEAN NOT NULL DEFAULT true, + updated_at TIMESTAMPTZ NOT NULL DEFAULT clock_timestamp() +); + +CREATE TABLE scheduled_captures ( + workspace_id TEXT NOT NULL CHECK (length(workspace_id) BETWEEN 1 AND 128), + calendar_event_id TEXT NOT NULL CHECK (length(calendar_event_id) BETWEEN 1 AND 512), + job_id TEXT CHECK (job_id IS NULL OR length(job_id) BETWEEN 1 AND 128), + title TEXT NOT NULL CHECK (length(title) BETWEEN 1 AND 1024), + starts_at TIMESTAMPTZ NOT NULL, + ends_at TIMESTAMPTZ, + meeting JSONB NOT NULL, + provider TEXT NOT NULL, + owner_user_id TEXT NOT NULL CHECK (length(owner_user_id) BETWEEN 1 AND 128), + status TEXT NOT NULL CHECK ( + status IN ('pending', 'skipped', 'canceled', 'dispatched') + ), + skip_reason TEXT CHECK ( + skip_reason IS NULL OR length(skip_reason) BETWEEN 1 AND 128 + ), + bot_name TEXT NOT NULL CHECK (length(bot_name) BETWEEN 1 AND 80), + disclosure_text TEXT, + updated_at TIMESTAMPTZ NOT NULL DEFAULT clock_timestamp(), + PRIMARY KEY (workspace_id, calendar_event_id) +); + +CREATE UNIQUE INDEX scheduled_captures_workspace_job + ON scheduled_captures (workspace_id, job_id) + WHERE job_id IS NOT NULL; + +CREATE INDEX scheduled_captures_dispatchable + ON scheduled_captures (starts_at) + WHERE status = 'pending'; diff --git a/enterprise/control-plane/src/api.rs b/enterprise/control-plane/src/api.rs index 9dd435feed..4b159d7521 100644 --- a/enterprise/control-plane/src/api.rs +++ b/enterprise/control-plane/src/api.rs @@ -7,7 +7,7 @@ use axum::{ extract::{DefaultBodyLimit, Path, Query, State}, http::{HeaderMap, StatusCode, header}, response::{IntoResponse, Response}, - routing::{get, post}, + routing::{delete, get, post, put}, }; use serde::{Deserialize, Serialize}; use tower_http::trace::TraceLayer; @@ -19,6 +19,8 @@ use crate::{ CaptureJobStatus, ClaimCaptureJobRequest, CreateCaptureJobRequest, ProjectionPublication, RenewCaptureJobLeaseRequest, }, + license::License, + schedule::{CalendarEventInput, CapturePolicy, ScheduledCapture}, store::{ControlPlaneStore, StoreError}, zoom::{ZoomDispatchError, ZoomWebhookError, ZoomWebhookOutcome, ZoomWebhookService}, }; @@ -33,6 +35,7 @@ pub struct AppState { store: Arc, authenticator: Arc, zoom: Option>, + license: Option, } impl AppState { @@ -44,6 +47,7 @@ impl AppState { store, authenticator, zoom: None, + license: None, } } @@ -51,6 +55,11 @@ impl AppState { self.zoom = Some(zoom); self } + + pub fn with_license(mut self, license: License) -> Self { + self.license = Some(license); + self + } } pub fn router(state: AppState) -> Router { @@ -84,6 +93,22 @@ pub fn router(state: AppState) -> Router { .route( "/v1/workspaces/{workspace_id}/sessions/{job_id}", get(read_session), + ) + .route( + "/v1/workspaces/{workspace_id}/capture-policy", + get(read_capture_policy).put(write_capture_policy), + ) + .route( + "/v1/workspaces/{workspace_id}/calendar-events", + put(upsert_calendar_events), + ) + .route( + "/v1/workspaces/{workspace_id}/scheduled-captures", + get(list_scheduled_captures).post(dispatch_scheduled_captures), + ) + .route( + "/v1/workspaces/{workspace_id}/scheduled-captures/{calendar_event_id}", + delete(cancel_scheduled_capture), ); if state.zoom.is_some() { router = router.route("/webhooks/zoom", post(zoom_webhook)); @@ -369,6 +394,116 @@ async fn read_session( Ok(Json(session)) } +async fn read_capture_policy( + State(state): State, + Path(workspace_id): Path, + headers: HeaderMap, +) -> Result, ApiError> { + authorize(&state, &headers, &workspace_id)?; + validate_identifier(&workspace_id, "workspace_id")?; + let policy = state + .store + .get_capture_policy(&workspace_id) + .await + .map_err(ApiError::from_store)?; + Ok(Json(policy)) +} + +async fn write_capture_policy( + State(state): State, + Path(workspace_id): Path, + headers: HeaderMap, + Json(mut policy): Json, +) -> Result, ApiError> { + authorize(&state, &headers, &workspace_id)?; + validate_identifier(&workspace_id, "workspace_id")?; + policy.workspace_id = workspace_id; + let policy = state + .store + .upsert_capture_policy(&policy) + .await + .map_err(ApiError::from_store)?; + Ok(Json(policy)) +} + +async fn upsert_calendar_events( + State(state): State, + Path(workspace_id): Path, + headers: HeaderMap, + Json(events): Json>, +) -> Result>, ApiError> { + authorize(&state, &headers, &workspace_id)?; + validate_identifier(&workspace_id, "workspace_id")?; + if events.len() > 500 { + return Err(ApiError::bad_request( + "invalid_calendar_events", + "calendar event batches are limited to 500 events", + )); + } + let scheduled = state + .store + .upsert_calendar_events(&workspace_id, &events) + .await + .map_err(ApiError::from_store)?; + Ok(Json(scheduled)) +} + +async fn list_scheduled_captures( + State(state): State, + Path(workspace_id): Path, + headers: HeaderMap, +) -> Result>, ApiError> { + authorize(&state, &headers, &workspace_id)?; + validate_identifier(&workspace_id, "workspace_id")?; + let scheduled = state + .store + .list_scheduled_captures(&workspace_id) + .await + .map_err(ApiError::from_store)?; + Ok(Json(scheduled)) +} + +async fn cancel_scheduled_capture( + State(state): State, + Path((workspace_id, calendar_event_id)): Path<(String, String)>, + headers: HeaderMap, +) -> Result, ApiError> { + authorize(&state, &headers, &workspace_id)?; + validate_identifier(&workspace_id, "workspace_id")?; + if calendar_event_id.is_empty() || calendar_event_id.len() > 512 { + return Err(ApiError::bad_request( + "invalid_calendar_event_id", + "calendarEventId must contain 1-512 bytes", + )); + } + let scheduled = state + .store + .cancel_scheduled_capture(&workspace_id, &calendar_event_id) + .await + .map_err(ApiError::from_store)?; + Ok(Json(scheduled)) +} + +async fn dispatch_scheduled_captures( + State(state): State, + Path(workspace_id): Path, + headers: HeaderMap, +) -> Result>, ApiError> { + authorize(&state, &headers, &workspace_id)?; + validate_identifier(&workspace_id, "workspace_id")?; + let dispatched = state + .store + .dispatch_due_scheduled_captures(chrono::Utc::now()) + .await + .map_err(ApiError::from_store)?; + Ok(Json( + dispatched + .into_iter() + .filter(|job| job.job_id.starts_with("cal-")) + .collect(), + )) +} + fn authorize( state: &AppState, headers: &HeaderMap, @@ -391,6 +526,13 @@ fn authorize( if authenticated.workspace_id.as_ref() != requested_workspace_id { return Err(ApiError::forbidden()); } + if state + .license + .as_ref() + .is_some_and(|license| !license.authorizes_workspace(requested_workspace_id)) + { + return Err(ApiError::forbidden()); + } Ok(()) } diff --git a/enterprise/control-plane/src/config.rs b/enterprise/control-plane/src/config.rs index 3e9646dd7e..19973e68d6 100644 --- a/enterprise/control-plane/src/config.rs +++ b/enterprise/control-plane/src/config.rs @@ -1,8 +1,11 @@ use std::{collections::BTreeMap, env, net::SocketAddr, time::Duration}; use anarlog_enterprise_zoom_rtms_worker::{ZoomRtmsCredentials, ZoomWebhookVerifier}; +use chrono::Utc; use serde::Deserialize; +use crate::license::{LICENSE_ENV, LICENSE_KEY_ENV, License, LicenseError}; + pub const DATABASE_URL_ENV: &str = "ANARLOG_ENTERPRISE_DATABASE_URL"; pub const WORKSPACE_TOKENS_ENV: &str = "ANARLOG_ENTERPRISE_WORKSPACE_TOKENS"; pub const BIND_ADDRESS_ENV: &str = "ANARLOG_ENTERPRISE_BIND_ADDRESS"; @@ -22,6 +25,7 @@ pub struct Config { pub database_acquire_timeout: Duration, pub workspace_tokens: BTreeMap, pub zoom: Option, + pub license: Option, } #[derive(Clone)] @@ -112,6 +116,7 @@ impl Config { .0; validate_workspace_tokens(&workspace_tokens)?; let zoom = parse_zoom_config(zoom, &workspace_tokens)?; + let license = parse_license(LicenseConfigValues::from_env(), &workspace_tokens)?; Ok(Self { database_url, @@ -120,6 +125,7 @@ impl Config { database_acquire_timeout: Duration::from_secs(10), workspace_tokens, zoom, + license, }) } } @@ -220,6 +226,43 @@ fn parse_zoom_config( })) } +#[derive(Default)] +pub struct LicenseConfigValues { + pub token: Option, + pub key: Option, +} + +impl LicenseConfigValues { + fn from_env() -> Self { + Self { + token: env::var(LICENSE_ENV).ok(), + key: env::var(LICENSE_KEY_ENV).ok(), + } + } +} + +fn parse_license( + values: LicenseConfigValues, + workspace_tokens: &BTreeMap, +) -> Result, ConfigError> { + match (values.token, values.key) { + (None, None) => Ok(None), + (Some(_), None) | (None, Some(_)) => Err(ConfigError::IncompleteLicenseConfiguration), + (Some(token), Some(key)) => { + let license = License::parse(&token, &key, Utc::now())?; + if license + .claims + .workspace_ids + .iter() + .any(|workspace_id| !workspace_tokens.contains_key(workspace_id)) + { + return Err(ConfigError::UnknownLicenseWorkspace); + } + Ok(Some(license)) + } + } +} + #[derive(Debug, thiserror::Error, PartialEq, Eq)] pub enum ConfigError { #[error("missing required configuration: {0}")] @@ -256,6 +299,24 @@ pub enum ConfigError { InvalidZoomAccountId, #[error("Zoom account registry references an unconfigured workspace: {0}")] UnknownZoomWorkspace(String), + #[error("offline license validation requires {LICENSE_ENV} and {LICENSE_KEY_ENV} together")] + IncompleteLicenseConfiguration, + #[error("offline license is invalid")] + InvalidLicense, + #[error("offline license references an unconfigured workspace")] + UnknownLicenseWorkspace, +} + +impl From for ConfigError { + fn from(error: LicenseError) -> Self { + match error { + LicenseError::InvalidKey => Self::IncompleteLicenseConfiguration, + LicenseError::InvalidToken + | LicenseError::InvalidSignature + | LicenseError::NotYetValid + | LicenseError::Expired => Self::InvalidLicense, + } + } } #[cfg(test)] @@ -278,6 +339,7 @@ mod tests { assert_eq!(config.database_max_connections, 10); assert_eq!(config.workspace_tokens["workspace-a"], TOKEN); assert!(config.zoom.is_none()); + assert!(config.license.is_none()); } #[test] diff --git a/enterprise/control-plane/src/lib.rs b/enterprise/control-plane/src/lib.rs index 342847de3e..e070dfb499 100644 --- a/enterprise/control-plane/src/lib.rs +++ b/enterprise/control-plane/src/lib.rs @@ -4,7 +4,9 @@ pub mod api; pub mod auth; pub mod capture; pub mod config; +pub mod license; pub mod projector; +pub mod schedule; pub mod store; pub mod zoom; @@ -49,9 +51,12 @@ pub async fn configured_state(config: &Config) -> anyhow::Result .context("failed to apply database migrations")?; let store = store.into_shared(); let mut state = api::AppState::new(store.clone(), Arc::new(authenticator)); + if let Some(license) = config.license.clone() { + state = state.with_license(license); + } if let Some(zoom) = &config.zoom { let dispatcher = Arc::new(ZoomCaptureDispatcher::new( - store, + store.clone(), zoom.credentials().clone(), )); dispatcher @@ -61,9 +66,31 @@ pub async fn configured_state(config: &Config) -> anyhow::Result dispatcher.clone().spawn_recovery(); state = state.with_zoom(Arc::new(ZoomWebhookService::new(zoom.clone(), dispatcher))); } + spawn_schedule_dispatcher(store); Ok(state) } +fn spawn_schedule_dispatcher(store: Arc) { + tokio::spawn(async move { + let mut interval = tokio::time::interval(std::time::Duration::from_secs(30)); + loop { + interval.tick().await; + match store + .dispatch_due_scheduled_captures(chrono::Utc::now()) + .await + { + Ok(jobs) if !jobs.is_empty() => { + tracing::info!(count = jobs.len(), "dispatched due calendar capture jobs"); + } + Ok(_) => {} + Err(error) => { + tracing::warn!(error = %error, "failed to dispatch due calendar capture jobs"); + } + } + } + }); +} + pub async fn serve( listener: TcpListener, state: api::AppState, diff --git a/enterprise/control-plane/src/license.rs b/enterprise/control-plane/src/license.rs new file mode 100644 index 0000000000..917660bf5e --- /dev/null +++ b/enterprise/control-plane/src/license.rs @@ -0,0 +1,252 @@ +use std::collections::BTreeSet; + +use base64::{Engine, engine::general_purpose::URL_SAFE_NO_PAD}; +use chrono::{DateTime, Utc}; +use serde::{Deserialize, Serialize}; +use sha2::{Digest, Sha256}; + +pub const LICENSE_ENV: &str = "ANARLOG_ENTERPRISE_LICENSE"; +pub const LICENSE_KEY_ENV: &str = "ANARLOG_ENTERPRISE_LICENSE_KEY"; + +const TOKEN_VERSION: &str = "v1"; +const HMAC_BLOCK_BYTES: usize = 64; + +#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] +#[serde(rename_all = "camelCase", deny_unknown_fields)] +pub struct LicenseClaims { + pub customer_id: String, + #[serde(default)] + pub workspace_ids: Vec, + pub not_before: DateTime, + #[serde(default)] + pub expires_at: Option>, + #[serde(default)] + pub features: BTreeSet, +} + +#[derive(Debug, Clone, PartialEq, Eq)] +pub struct License { + pub claims: LicenseClaims, +} + +impl License { + pub fn parse(token: &str, key: &str, now: DateTime) -> Result { + if key.len() < 32 || key.len() > 512 || key.chars().any(char::is_control) { + return Err(LicenseError::InvalidKey); + } + let (payload, mac) = split_token(token)?; + let expected = hmac_sha256(key.as_bytes(), payload.as_bytes()); + if !constant_time_eq(&expected, &mac) { + return Err(LicenseError::InvalidSignature); + } + let claims: LicenseClaims = serde_json::from_slice( + &URL_SAFE_NO_PAD + .decode(payload) + .map_err(|_| LicenseError::InvalidToken)?, + ) + .map_err(|_| LicenseError::InvalidToken)?; + validate_claims(&claims, now)?; + Ok(Self { claims }) + } + + pub fn issue(claims: &LicenseClaims, key: &str) -> Result { + if key.len() < 32 || key.len() > 512 || key.chars().any(char::is_control) { + return Err(LicenseError::InvalidKey); + } + validate_claims(claims, claims.not_before)?; + let payload = URL_SAFE_NO_PAD + .encode(serde_json::to_vec(claims).map_err(|_| LicenseError::InvalidToken)?); + let mac = hmac_sha256(key.as_bytes(), payload.as_bytes()); + Ok(format!( + "{TOKEN_VERSION}.{payload}.{}", + URL_SAFE_NO_PAD.encode(mac) + )) + } + + pub fn authorizes_workspace(&self, workspace_id: &str) -> bool { + self.claims.workspace_ids.is_empty() + || self + .claims + .workspace_ids + .iter() + .any(|allowed| allowed == workspace_id) + } + + pub fn has_feature(&self, feature: &str) -> bool { + self.claims.features.is_empty() || self.claims.features.contains(feature) + } +} + +fn split_token(token: &str) -> Result<(&str, Vec), LicenseError> { + let mut parts = token.split('.'); + let version = parts.next().ok_or(LicenseError::InvalidToken)?; + let payload = parts.next().ok_or(LicenseError::InvalidToken)?; + let mac = parts.next().ok_or(LicenseError::InvalidToken)?; + if version != TOKEN_VERSION || parts.next().is_some() || payload.is_empty() || mac.is_empty() { + return Err(LicenseError::InvalidToken); + } + Ok(( + payload, + URL_SAFE_NO_PAD + .decode(mac) + .map_err(|_| LicenseError::InvalidToken)?, + )) +} + +fn validate_claims(claims: &LicenseClaims, now: DateTime) -> Result<(), LicenseError> { + if claims.customer_id.is_empty() + || claims.customer_id.len() > 128 + || claims.customer_id.chars().any(char::is_control) + { + return Err(LicenseError::InvalidToken); + } + for workspace_id in &claims.workspace_ids { + if workspace_id.is_empty() + || workspace_id.len() > 128 + || !workspace_id + .bytes() + .all(|byte| byte.is_ascii_alphanumeric() || b"-_.".contains(&byte)) + { + return Err(LicenseError::InvalidToken); + } + } + if now < claims.not_before { + return Err(LicenseError::NotYetValid); + } + if claims + .expires_at + .is_some_and(|expires_at| now >= expires_at) + { + return Err(LicenseError::Expired); + } + Ok(()) +} + +fn hmac_sha256(key: &[u8], message: &[u8]) -> [u8; 32] { + let mut key_block = [0u8; HMAC_BLOCK_BYTES]; + if key.len() > HMAC_BLOCK_BYTES { + let hashed = Sha256::digest(key); + key_block[..hashed.len()].copy_from_slice(&hashed); + } else { + key_block[..key.len()].copy_from_slice(key); + } + let mut ipad = [0x36u8; HMAC_BLOCK_BYTES]; + let mut opad = [0x5cu8; HMAC_BLOCK_BYTES]; + for index in 0..HMAC_BLOCK_BYTES { + ipad[index] ^= key_block[index]; + opad[index] ^= key_block[index]; + } + let mut inner = Sha256::new(); + inner.update(ipad); + inner.update(message); + let inner_hash = inner.finalize(); + let mut outer = Sha256::new(); + outer.update(opad); + outer.update(inner_hash); + outer.finalize().into() +} + +fn constant_time_eq(left: &[u8], right: &[u8]) -> bool { + if left.len() != right.len() { + return false; + } + left.iter() + .zip(right) + .fold(0u8, |acc, (a, b)| acc | (a ^ b)) + == 0 +} + +#[derive(Debug, thiserror::Error, PartialEq, Eq)] +pub enum LicenseError { + #[error("{LICENSE_KEY_ENV} must contain between 32 and 512 bytes")] + InvalidKey, + #[error("{LICENSE_ENV} is not a valid Anarlog enterprise license")] + InvalidToken, + #[error("{LICENSE_ENV} signature is invalid")] + InvalidSignature, + #[error("{LICENSE_ENV} is not yet valid")] + NotYetValid, + #[error("{LICENSE_ENV} has expired")] + Expired, +} + +#[cfg(test)] +mod tests { + use super::*; + + const KEY: &str = "0123456789abcdef0123456789abcdef"; + + fn claims() -> LicenseClaims { + LicenseClaims { + customer_id: "acme".into(), + workspace_ids: vec!["workspace-a".into()], + not_before: DateTime::parse_from_rfc3339("2026-01-01T00:00:00Z") + .unwrap() + .with_timezone(&Utc), + expires_at: None, + features: BTreeSet::from(["capture".into()]), + } + } + + #[test] + fn round_trips_a_perpetual_offline_license() { + let token = License::issue(&claims(), KEY).unwrap(); + let license = License::parse( + &token, + KEY, + DateTime::parse_from_rfc3339("2026-08-21T00:00:00Z") + .unwrap() + .with_timezone(&Utc), + ) + .unwrap(); + + assert!(license.authorizes_workspace("workspace-a")); + assert!(!license.authorizes_workspace("workspace-b")); + assert!(license.has_feature("capture")); + assert!(!license.has_feature("telemetry")); + assert!(!token.contains(KEY)); + } + + #[test] + fn rejects_tampered_payloads_without_echoing_the_key() { + let token = License::issue(&claims(), KEY).unwrap(); + let mut parts = token.split('.'); + let version = parts.next().unwrap(); + let payload = parts.next().unwrap(); + let mac = parts.next().unwrap(); + let mut tampered_payload = payload.as_bytes().to_vec(); + tampered_payload[0] ^= 0x01; + let tampered = format!( + "{version}.{}.{mac}", + URL_SAFE_NO_PAD.encode(tampered_payload) + ); + let error = License::parse( + &tampered, + KEY, + DateTime::parse_from_rfc3339("2026-08-21T00:00:00Z") + .unwrap() + .with_timezone(&Utc), + ) + .unwrap_err(); + assert_eq!(error, LicenseError::InvalidSignature); + assert!(!error.to_string().contains(KEY)); + } + + #[test] + fn empty_workspace_and_feature_sets_authorize_configured_tenants() { + let mut claims = claims(); + claims.workspace_ids.clear(); + claims.features.clear(); + let token = License::issue(&claims, KEY).unwrap(); + let license = License::parse( + &token, + KEY, + DateTime::parse_from_rfc3339("2026-08-21T00:00:00Z") + .unwrap() + .with_timezone(&Utc), + ) + .unwrap(); + assert!(license.authorizes_workspace("any-workspace")); + assert!(license.has_feature("zoom")); + } +} diff --git a/enterprise/control-plane/src/schedule.rs b/enterprise/control-plane/src/schedule.rs new file mode 100644 index 0000000000..25e8d103b8 --- /dev/null +++ b/enterprise/control-plane/src/schedule.rs @@ -0,0 +1,188 @@ +use anlg_meeting_capture::{CaptureProviderKind, MeetingReference}; +use chrono::{DateTime, Utc}; +use serde::{Deserialize, Serialize}; + +#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)] +#[serde(rename_all = "camelCase", deny_unknown_fields)] +pub struct CapturePolicy { + pub workspace_id: String, + pub capture_enabled: bool, + pub allowed_providers: Vec, + pub bot_name: String, + #[serde(default)] + pub disclosure_text: Option, + pub skip_if_desktop_capture: bool, +} + +impl CapturePolicy { + pub fn default_off(workspace_id: impl Into) -> Self { + Self { + workspace_id: workspace_id.into(), + capture_enabled: false, + allowed_providers: vec![CaptureProviderKind::Anarlog], + bot_name: "Anarlog Notetaker".into(), + disclosure_text: None, + skip_if_desktop_capture: true, + } + } +} + +#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)] +#[serde(rename_all = "camelCase", deny_unknown_fields)] +pub struct CalendarEventInput { + pub calendar_event_id: String, + pub title: String, + pub starts_at: DateTime, + #[serde(default)] + pub ends_at: Option>, + pub meeting: MeetingReference, + pub provider: CaptureProviderKind, + pub owner_user_id: String, + #[serde(default)] + pub opt_out: bool, + #[serde(default)] + pub desktop_capture_active: bool, + #[serde(default)] + pub canceled: bool, +} + +#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)] +#[serde(rename_all = "snake_case")] +pub enum ScheduledCaptureStatus { + Pending, + Skipped, + Canceled, + Dispatched, +} + +#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)] +#[serde(rename_all = "camelCase")] +pub struct ScheduledCapture { + pub workspace_id: String, + pub calendar_event_id: String, + pub job_id: Option, + pub title: String, + pub starts_at: DateTime, + pub ends_at: Option>, + pub meeting: MeetingReference, + pub provider: CaptureProviderKind, + pub owner_user_id: String, + pub status: ScheduledCaptureStatus, + pub skip_reason: Option, + pub bot_name: String, + pub disclosure_text: Option, +} + +#[derive(Debug, Clone, Copy, PartialEq, Eq)] +pub enum ScheduleDecision { + Pending, + Skipped(&'static str), + Canceled(&'static str), +} + +pub fn decide_schedule(policy: &CapturePolicy, event: &CalendarEventInput) -> ScheduleDecision { + if event.canceled { + return ScheduleDecision::Canceled("calendar_event_canceled"); + } + if event.opt_out { + return ScheduleDecision::Canceled("event_opt_out"); + } + if !policy.capture_enabled { + return ScheduleDecision::Skipped("capture_policy_disabled"); + } + if !policy.allowed_providers.contains(&event.provider) { + return ScheduleDecision::Skipped("provider_not_allowed"); + } + if event.desktop_capture_active && policy.skip_if_desktop_capture { + return ScheduleDecision::Skipped("desktop_capture_duplicate"); + } + ScheduleDecision::Pending +} + +pub fn scheduled_job_id(calendar_event_id: &str) -> String { + let mut job_id = String::from("cal-"); + for byte in calendar_event_id.bytes() { + if job_id.len() >= 128 { + break; + } + if byte.is_ascii_alphanumeric() || b"-_.".contains(&byte) { + job_id.push(byte as char); + } else { + job_id.push('-'); + } + } + if job_id == "cal-" { + "cal-event".into() + } else { + job_id + } +} + +#[cfg(test)] +mod tests { + use anlg_meeting_capture::{MeetingPlatform, MeetingReference}; + use chrono::DateTime; + + use super::*; + + fn event() -> CalendarEventInput { + CalendarEventInput { + calendar_event_id: "evt-1".into(), + title: "Standup".into(), + starts_at: DateTime::parse_from_rfc3339("2026-08-21T15:00:00Z") + .unwrap() + .with_timezone(&Utc), + ends_at: None, + meeting: MeetingReference { + platform: MeetingPlatform::GoogleMeet, + url: "https://meet.google.com/aaa-bbbb-ccc".into(), + external_id: None, + calendar_event_id: Some("evt-1".into()), + }, + provider: CaptureProviderKind::Anarlog, + owner_user_id: "owner-a".into(), + opt_out: false, + desktop_capture_active: false, + canceled: false, + } + } + + #[test] + fn default_policy_does_not_schedule_bots() { + let policy = CapturePolicy::default_off("workspace-a"); + assert_eq!( + decide_schedule(&policy, &event()), + ScheduleDecision::Skipped("capture_policy_disabled") + ); + } + + #[test] + fn enabled_policy_schedules_one_pending_job_unless_opted_out() { + let mut policy = CapturePolicy::default_off("workspace-a"); + policy.capture_enabled = true; + assert_eq!( + decide_schedule(&policy, &event()), + ScheduleDecision::Pending + ); + + let mut opted_out = event(); + opted_out.opt_out = true; + assert_eq!( + decide_schedule(&policy, &opted_out), + ScheduleDecision::Canceled("event_opt_out") + ); + + let mut desktop = event(); + desktop.desktop_capture_active = true; + assert_eq!( + decide_schedule(&policy, &desktop), + ScheduleDecision::Skipped("desktop_capture_duplicate") + ); + } + + #[test] + fn job_ids_are_stable_identifiers_for_the_same_calendar_event() { + assert_eq!(scheduled_job_id("evt-1"), "cal-evt-1"); + assert_eq!(scheduled_job_id("evt-1"), scheduled_job_id("evt-1")); + } +} diff --git a/enterprise/control-plane/src/store.rs b/enterprise/control-plane/src/store.rs index fd733f1044..eac31b2ed1 100644 --- a/enterprise/control-plane/src/store.rs +++ b/enterprise/control-plane/src/store.rs @@ -14,6 +14,10 @@ use crate::{ CaptureJobLeaseIdentity, CaptureJobStatus, ProjectionPublication, }, projector, + schedule::{ + CalendarEventInput, CapturePolicy, ScheduleDecision, ScheduledCapture, + ScheduledCaptureStatus, decide_schedule, scheduled_job_id, + }, }; static MIGRATOR: sqlx::migrate::Migrator = sqlx::migrate!(); @@ -101,6 +105,35 @@ pub trait ControlPlaneStore: Send + Sync { workspace_id: &str, job_id: &str, ) -> Result; + + async fn get_capture_policy(&self, workspace_id: &str) -> Result; + + async fn upsert_capture_policy( + &self, + policy: &CapturePolicy, + ) -> Result; + + async fn upsert_calendar_events( + &self, + workspace_id: &str, + events: &[CalendarEventInput], + ) -> Result, StoreError>; + + async fn list_scheduled_captures( + &self, + workspace_id: &str, + ) -> Result, StoreError>; + + async fn cancel_scheduled_capture( + &self, + workspace_id: &str, + calendar_event_id: &str, + ) -> Result; + + async fn dispatch_due_scheduled_captures( + &self, + now: DateTime, + ) -> Result, StoreError>; } #[derive(Clone)] @@ -987,6 +1020,212 @@ impl ControlPlaneStore for PostgresStore { envelope, }) } + + async fn get_capture_policy(&self, workspace_id: &str) -> Result { + let row = sqlx::query( + r#" + SELECT workspace_id, capture_enabled, allowed_providers, bot_name, + disclosure_text, skip_if_desktop_capture + FROM capture_policies + WHERE workspace_id = $1 + "#, + ) + .bind(workspace_id) + .fetch_optional(&self.pool) + .await?; + match row { + Some(row) => capture_policy(row), + None => Ok(CapturePolicy::default_off(workspace_id)), + } + } + + async fn upsert_capture_policy( + &self, + policy: &CapturePolicy, + ) -> Result { + validate_policy(policy)?; + let allowed_providers = serde_json::to_value(&policy.allowed_providers)?; + sqlx::query( + r#" + INSERT INTO capture_policies ( + workspace_id, + capture_enabled, + allowed_providers, + bot_name, + disclosure_text, + skip_if_desktop_capture, + updated_at + ) VALUES ($1, $2, $3, $4, $5, $6, clock_timestamp()) + ON CONFLICT (workspace_id) DO UPDATE SET + capture_enabled = EXCLUDED.capture_enabled, + allowed_providers = EXCLUDED.allowed_providers, + bot_name = EXCLUDED.bot_name, + disclosure_text = EXCLUDED.disclosure_text, + skip_if_desktop_capture = EXCLUDED.skip_if_desktop_capture, + updated_at = clock_timestamp() + "#, + ) + .bind(&policy.workspace_id) + .bind(policy.capture_enabled) + .bind(&allowed_providers) + .bind(&policy.bot_name) + .bind(&policy.disclosure_text) + .bind(policy.skip_if_desktop_capture) + .execute(&self.pool) + .await?; + self.get_capture_policy(&policy.workspace_id).await + } + + async fn upsert_calendar_events( + &self, + workspace_id: &str, + events: &[CalendarEventInput], + ) -> Result, StoreError> { + let policy = self.get_capture_policy(workspace_id).await?; + let mut transaction = self.pool.begin().await?; + let mut stored = Vec::with_capacity(events.len()); + for event in events { + stored.push(upsert_scheduled_capture(&mut transaction, &policy, event).await?); + } + transaction.commit().await?; + Ok(stored) + } + + async fn list_scheduled_captures( + &self, + workspace_id: &str, + ) -> Result, StoreError> { + let rows = sqlx::query( + r#" + SELECT workspace_id, calendar_event_id, job_id, title, starts_at, ends_at, + meeting, provider, owner_user_id, status, skip_reason, bot_name, + disclosure_text + FROM scheduled_captures + WHERE workspace_id = $1 + ORDER BY starts_at ASC, calendar_event_id ASC + "#, + ) + .bind(workspace_id) + .fetch_all(&self.pool) + .await?; + rows.into_iter().map(scheduled_capture).collect() + } + + async fn cancel_scheduled_capture( + &self, + workspace_id: &str, + calendar_event_id: &str, + ) -> Result { + let row = sqlx::query( + r#" + UPDATE scheduled_captures + SET + status = CASE + WHEN status = 'dispatched' THEN status + ELSE 'canceled' + END, + skip_reason = CASE + WHEN status = 'dispatched' THEN skip_reason + ELSE 'canceled_by_user' + END, + updated_at = clock_timestamp() + WHERE workspace_id = $1 AND calendar_event_id = $2 + RETURNING workspace_id, calendar_event_id, job_id, title, starts_at, ends_at, + meeting, provider, owner_user_id, status, skip_reason, bot_name, + disclosure_text + "#, + ) + .bind(workspace_id) + .bind(calendar_event_id) + .fetch_optional(&self.pool) + .await?; + row.map(scheduled_capture) + .transpose()? + .ok_or(StoreError::NotFound) + } + + async fn dispatch_due_scheduled_captures( + &self, + now: DateTime, + ) -> Result, StoreError> { + let mut transaction = self.pool.begin().await?; + let rows = sqlx::query( + r#" + SELECT workspace_id, calendar_event_id, job_id, title, starts_at, ends_at, + meeting, provider, owner_user_id, status, skip_reason, bot_name, + disclosure_text + FROM scheduled_captures + WHERE status = 'pending' AND starts_at <= $1 + ORDER BY starts_at ASC, workspace_id ASC, calendar_event_id ASC + FOR UPDATE SKIP LOCKED + "#, + ) + .bind(now) + .fetch_all(&mut *transaction) + .await?; + let mut dispatched = Vec::new(); + for row in rows { + let scheduled = scheduled_capture(row)?; + let job_id = scheduled + .job_id + .clone() + .unwrap_or_else(|| scheduled_job_id(&scheduled.calendar_event_id)); + let bot_id = format!("bot-{job_id}"); + let created = sqlx::query( + r#" + INSERT INTO capture_jobs ( + workspace_id, + job_id, + bot_id, + owner_user_id, + requesting_actor_id, + session_id, + session_title, + provider, + meeting, + created_at, + updated_at + ) VALUES ($1, $2, $3, $4, $4, $2, $5, $6, $7, $8, $8) + ON CONFLICT DO NOTHING + "#, + ) + .bind(&scheduled.workspace_id) + .bind(&job_id) + .bind(&bot_id) + .bind(&scheduled.owner_user_id) + .bind(&scheduled.title) + .bind(enum_name(scheduled.provider)?) + .bind(serde_json::to_value(&scheduled.meeting)?) + .bind(now) + .execute(&mut *transaction) + .await? + .rows_affected() + == 1; + sqlx::query( + r#" + UPDATE scheduled_captures + SET + job_id = $3, + status = 'dispatched', + skip_reason = NULL, + updated_at = clock_timestamp() + WHERE workspace_id = $1 AND calendar_event_id = $2 + "#, + ) + .bind(&scheduled.workspace_id) + .bind(&scheduled.calendar_event_id) + .bind(&job_id) + .execute(&mut *transaction) + .await?; + dispatched.push(CaptureJobStatus { + job_id, + created, + state: BotState::Queued, + }); + } + transaction.commit().await?; + Ok(dispatched) + } } fn delivery_item( @@ -1054,6 +1293,163 @@ fn capture_checkpoint(row: sqlx::postgres::PgRow) -> Result Result<(), StoreError> { + if policy.bot_name.is_empty() + || policy.bot_name.len() > 80 + || policy.bot_name.chars().any(char::is_control) + { + return Err(StoreError::InvalidCaptureEvent( + "capture bot name must contain 1-80 non-control characters".into(), + )); + } + if policy.allowed_providers.is_empty() { + return Err(StoreError::InvalidCaptureEvent( + "capture policy must allow at least one provider".into(), + )); + } + if let Some(disclosure) = &policy.disclosure_text + && (disclosure.is_empty() || disclosure.len() > 2048) + { + return Err(StoreError::InvalidCaptureEvent( + "disclosure text must contain 1-2048 bytes".into(), + )); + } + Ok(()) +} + +fn capture_policy(row: sqlx::postgres::PgRow) -> Result { + Ok(CapturePolicy { + workspace_id: row.try_get("workspace_id")?, + capture_enabled: row.try_get("capture_enabled")?, + allowed_providers: serde_json::from_value(row.try_get("allowed_providers")?)?, + bot_name: row.try_get("bot_name")?, + disclosure_text: row.try_get("disclosure_text")?, + skip_if_desktop_capture: row.try_get("skip_if_desktop_capture")?, + }) +} + +fn scheduled_capture(row: sqlx::postgres::PgRow) -> Result { + Ok(ScheduledCapture { + workspace_id: row.try_get("workspace_id")?, + calendar_event_id: row.try_get("calendar_event_id")?, + job_id: row.try_get("job_id")?, + title: row.try_get("title")?, + starts_at: row.try_get("starts_at")?, + ends_at: row.try_get("ends_at")?, + meeting: serde_json::from_value(row.try_get("meeting")?)?, + provider: parse_enum(&row.try_get::("provider")?)?, + owner_user_id: row.try_get("owner_user_id")?, + status: parse_enum(&row.try_get::("status")?)?, + skip_reason: row.try_get("skip_reason")?, + bot_name: row.try_get("bot_name")?, + disclosure_text: row.try_get("disclosure_text")?, + }) +} + +async fn upsert_scheduled_capture( + transaction: &mut sqlx::Transaction<'_, sqlx::Postgres>, + policy: &CapturePolicy, + event: &CalendarEventInput, +) -> Result { + if event.calendar_event_id.is_empty() + || event.calendar_event_id.len() > 512 + || event.calendar_event_id.chars().any(char::is_control) + { + return Err(StoreError::InvalidCaptureEvent( + "calendar event id must contain 1-512 non-control characters".into(), + )); + } + if event.title.trim().is_empty() || event.title.len() > 1024 { + return Err(StoreError::InvalidCaptureEvent( + "calendar event title must contain 1-1024 bytes".into(), + )); + } + let decision = decide_schedule(policy, event); + let (status, skip_reason, job_id) = match decision { + ScheduleDecision::Pending => ( + ScheduledCaptureStatus::Pending, + None, + Some(scheduled_job_id(&event.calendar_event_id)), + ), + ScheduleDecision::Skipped(reason) => (ScheduledCaptureStatus::Skipped, Some(reason), None), + ScheduleDecision::Canceled(reason) => { + (ScheduledCaptureStatus::Canceled, Some(reason), None) + } + }; + let meeting = serde_json::to_value(&event.meeting)?; + sqlx::query( + r#" + INSERT INTO scheduled_captures ( + workspace_id, + calendar_event_id, + job_id, + title, + starts_at, + ends_at, + meeting, + provider, + owner_user_id, + status, + skip_reason, + bot_name, + disclosure_text, + updated_at + ) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, clock_timestamp()) + ON CONFLICT (workspace_id, calendar_event_id) DO UPDATE SET + job_id = CASE + WHEN scheduled_captures.status = 'dispatched' THEN scheduled_captures.job_id + ELSE EXCLUDED.job_id + END, + title = EXCLUDED.title, + starts_at = EXCLUDED.starts_at, + ends_at = EXCLUDED.ends_at, + meeting = EXCLUDED.meeting, + provider = EXCLUDED.provider, + owner_user_id = EXCLUDED.owner_user_id, + status = CASE + WHEN scheduled_captures.status = 'dispatched' THEN scheduled_captures.status + ELSE EXCLUDED.status + END, + skip_reason = CASE + WHEN scheduled_captures.status = 'dispatched' THEN scheduled_captures.skip_reason + ELSE EXCLUDED.skip_reason + END, + bot_name = EXCLUDED.bot_name, + disclosure_text = EXCLUDED.disclosure_text, + updated_at = clock_timestamp() + "#, + ) + .bind(&policy.workspace_id) + .bind(&event.calendar_event_id) + .bind(&job_id) + .bind(&event.title) + .bind(event.starts_at) + .bind(event.ends_at) + .bind(&meeting) + .bind(enum_name(event.provider)?) + .bind(&event.owner_user_id) + .bind(enum_name(status)?) + .bind(skip_reason) + .bind(&policy.bot_name) + .bind(&policy.disclosure_text) + .execute(&mut **transaction) + .await?; + let row = sqlx::query( + r#" + SELECT workspace_id, calendar_event_id, job_id, title, starts_at, ends_at, + meeting, provider, owner_user_id, status, skip_reason, bot_name, + disclosure_text + FROM scheduled_captures + WHERE workspace_id = $1 AND calendar_event_id = $2 + "#, + ) + .bind(&policy.workspace_id) + .bind(&event.calendar_event_id) + .fetch_one(&mut **transaction) + .await?; + scheduled_capture(row) +} + async fn read_publication( transaction: &mut sqlx::Transaction<'_, sqlx::Postgres>, workspace_id: &str, diff --git a/enterprise/control-plane/src/zoom.rs b/enterprise/control-plane/src/zoom.rs index d703bd6023..2d9ea031df 100644 --- a/enterprise/control-plane/src/zoom.rs +++ b/enterprise/control-plane/src/zoom.rs @@ -1260,7 +1260,11 @@ impl ZoomCaptureWorkerError { fn can_reconcile_with_stop(&self) -> bool { matches!( self, - Self::Session(ZoomRtmsSessionError::ConnectionClosed(_)) + Self::Session( + ZoomRtmsSessionError::ConnectionClosed(_) + | ZoomRtmsSessionError::Websocket(_) + | ZoomRtmsSessionError::HandshakeTimeout(_) + ) ) } @@ -1535,6 +1539,50 @@ mod tests { ) -> Result { Err(StoreError::NotFound) } + + async fn get_capture_policy( + &self, + workspace_id: &str, + ) -> Result { + Ok(crate::schedule::CapturePolicy::default_off(workspace_id)) + } + + async fn upsert_capture_policy( + &self, + policy: &crate::schedule::CapturePolicy, + ) -> Result { + Ok(policy.clone()) + } + + async fn upsert_calendar_events( + &self, + _workspace_id: &str, + _events: &[crate::schedule::CalendarEventInput], + ) -> Result, StoreError> { + Ok(Vec::new()) + } + + async fn list_scheduled_captures( + &self, + _workspace_id: &str, + ) -> Result, StoreError> { + Ok(Vec::new()) + } + + async fn cancel_scheduled_capture( + &self, + _workspace_id: &str, + _calendar_event_id: &str, + ) -> Result { + Err(StoreError::NotFound) + } + + async fn dispatch_due_scheduled_captures( + &self, + _now: chrono::DateTime, + ) -> Result, StoreError> { + Ok(Vec::new()) + } } fn zoom_checkpoint(external_id: &str) -> CaptureJobCheckpoint { @@ -1645,7 +1693,7 @@ mod tests { } #[test] - fn only_connection_close_errors_can_reconcile_with_a_clean_stop() { + fn connection_failures_can_reconcile_with_a_clean_stop() { assert!( ZoomCaptureWorkerError::Session(ZoomRtmsSessionError::ConnectionClosed("media")) .can_reconcile_with_stop() diff --git a/enterprise/control-plane/tests/api.rs b/enterprise/control-plane/tests/api.rs index 2d4f574a1d..073518854e 100644 --- a/enterprise/control-plane/tests/api.rs +++ b/enterprise/control-plane/tests/api.rs @@ -1,4 +1,4 @@ -use std::sync::Arc; +use std::{collections::HashMap, sync::Arc}; use anarlog_enterprise_control_plane::{ api::{AppState, router}, @@ -8,6 +8,11 @@ use anarlog_enterprise_control_plane::{ CaptureJobLeaseIdentity, CaptureJobStatus, ProjectionPublication, }, config::{Config, ZoomConfigValues}, + license::{License, LicenseClaims}, + schedule::{ + CalendarEventInput, CapturePolicy, ScheduleDecision, ScheduledCapture, + ScheduledCaptureStatus, decide_schedule, scheduled_job_id, + }, serve, store::{ControlPlaneStore, StoreError}, zoom::{ @@ -36,6 +41,8 @@ const TOKEN_B: &str = "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb"; struct MemoryStore { ready: bool, + policies: Mutex>, + scheduled: Mutex>, } #[derive(Default)] @@ -210,6 +217,152 @@ impl ControlPlaneStore for MemoryStore { ) -> Result { Err(StoreError::NotFound) } + + async fn get_capture_policy(&self, workspace_id: &str) -> Result { + Ok(self + .policies + .lock() + .unwrap() + .get(workspace_id) + .cloned() + .unwrap_or_else(|| CapturePolicy::default_off(workspace_id))) + } + + async fn upsert_capture_policy( + &self, + policy: &CapturePolicy, + ) -> Result { + self.policies + .lock() + .unwrap() + .insert(policy.workspace_id.clone(), policy.clone()); + Ok(policy.clone()) + } + + async fn upsert_calendar_events( + &self, + workspace_id: &str, + events: &[CalendarEventInput], + ) -> Result, StoreError> { + let policy = self.get_capture_policy(workspace_id).await?; + let mut scheduled = self.scheduled.lock().unwrap(); + let mut out = Vec::new(); + for event in events { + let key = (workspace_id.to_string(), event.calendar_event_id.clone()); + if let Some(existing) = scheduled.get(&key) { + if existing.status == ScheduledCaptureStatus::Dispatched { + out.push(existing.clone()); + continue; + } + } + let decision = decide_schedule(&policy, event); + let row = match decision { + ScheduleDecision::Pending => ScheduledCapture { + workspace_id: workspace_id.into(), + calendar_event_id: event.calendar_event_id.clone(), + job_id: Some(scheduled_job_id(&event.calendar_event_id)), + title: event.title.clone(), + starts_at: event.starts_at, + ends_at: event.ends_at, + meeting: event.meeting.clone(), + provider: event.provider, + owner_user_id: event.owner_user_id.clone(), + status: ScheduledCaptureStatus::Pending, + skip_reason: None, + bot_name: policy.bot_name.clone(), + disclosure_text: policy.disclosure_text.clone(), + }, + ScheduleDecision::Skipped(reason) => ScheduledCapture { + workspace_id: workspace_id.into(), + calendar_event_id: event.calendar_event_id.clone(), + job_id: None, + title: event.title.clone(), + starts_at: event.starts_at, + ends_at: event.ends_at, + meeting: event.meeting.clone(), + provider: event.provider, + owner_user_id: event.owner_user_id.clone(), + status: ScheduledCaptureStatus::Skipped, + skip_reason: Some(reason.into()), + bot_name: policy.bot_name.clone(), + disclosure_text: policy.disclosure_text.clone(), + }, + ScheduleDecision::Canceled(reason) => ScheduledCapture { + workspace_id: workspace_id.into(), + calendar_event_id: event.calendar_event_id.clone(), + job_id: None, + title: event.title.clone(), + starts_at: event.starts_at, + ends_at: event.ends_at, + meeting: event.meeting.clone(), + provider: event.provider, + owner_user_id: event.owner_user_id.clone(), + status: ScheduledCaptureStatus::Canceled, + skip_reason: Some(reason.into()), + bot_name: policy.bot_name.clone(), + disclosure_text: policy.disclosure_text.clone(), + }, + }; + scheduled.insert(key, row.clone()); + out.push(row); + } + Ok(out) + } + + async fn list_scheduled_captures( + &self, + workspace_id: &str, + ) -> Result, StoreError> { + Ok(self + .scheduled + .lock() + .unwrap() + .values() + .filter(|row| row.workspace_id == workspace_id) + .cloned() + .collect()) + } + + async fn cancel_scheduled_capture( + &self, + workspace_id: &str, + calendar_event_id: &str, + ) -> Result { + let mut scheduled = self.scheduled.lock().unwrap(); + let row = scheduled + .get_mut(&(workspace_id.into(), calendar_event_id.into())) + .ok_or(StoreError::NotFound)?; + if row.status != ScheduledCaptureStatus::Dispatched { + row.status = ScheduledCaptureStatus::Canceled; + row.skip_reason = Some("canceled_by_user".into()); + } + Ok(row.clone()) + } + + async fn dispatch_due_scheduled_captures( + &self, + now: chrono::DateTime, + ) -> Result, StoreError> { + let mut scheduled = self.scheduled.lock().unwrap(); + let mut dispatched = Vec::new(); + for row in scheduled.values_mut() { + if row.status != ScheduledCaptureStatus::Pending || row.starts_at > now { + continue; + } + let job_id = row + .job_id + .clone() + .unwrap_or_else(|| scheduled_job_id(&row.calendar_event_id)); + row.job_id = Some(job_id.clone()); + row.status = ScheduledCaptureStatus::Dispatched; + dispatched.push(CaptureJobStatus { + job_id, + created: true, + state: BotState::Queued, + }); + } + Ok(dispatched) + } } fn state(ready: bool) -> AppState { @@ -218,7 +371,14 @@ fn state(ready: bool) -> AppState { ("workspace-b".into(), TOKEN_B.into()), ]) .unwrap(); - AppState::new(Arc::new(MemoryStore { ready }), Arc::new(authenticator)) + AppState::new( + Arc::new(MemoryStore { + ready, + policies: Mutex::new(HashMap::new()), + scheduled: Mutex::new(HashMap::new()), + }), + Arc::new(authenticator), + ) } fn state_with_zoom(dispatcher: Arc) -> AppState { @@ -697,3 +857,111 @@ fn capture_job() -> CaptureJob { .with_timezone(&chrono::Utc), } } + +#[tokio::test] +async fn schedules_exactly_one_capture_job_and_allows_cancel() { + let app = router(state(true)); + let policy = serde_json::json!({ + "workspaceId": "workspace-a", + "captureEnabled": true, + "allowedProviders": ["anarlog"], + "botName": "Anarlog Notetaker", + "skipIfDesktopCapture": true + }); + let saved = app + .clone() + .oneshot(json_request( + Method::PUT, + "/v1/workspaces/workspace-a/capture-policy", + Some(TOKEN_A), + &policy, + )) + .await + .unwrap(); + assert_eq!(saved.status(), StatusCode::OK); + + let events = serde_json::json!([{ + "calendarEventId": "evt-1", + "title": "Standup", + "startsAt": "2026-08-21T15:00:00Z", + "meeting": { + "platform": "google_meet", + "url": "https://meet.google.com/aaa-bbbb-ccc" + }, + "provider": "anarlog", + "ownerUserId": "owner-a" + }]); + let first = app + .clone() + .oneshot(json_request( + Method::PUT, + "/v1/workspaces/workspace-a/calendar-events", + Some(TOKEN_A), + &events, + )) + .await + .unwrap(); + let second = app + .clone() + .oneshot(json_request( + Method::PUT, + "/v1/workspaces/workspace-a/calendar-events", + Some(TOKEN_A), + &events, + )) + .await + .unwrap(); + assert_eq!(first.status(), StatusCode::OK); + assert_eq!(second.status(), StatusCode::OK); + let listed = response_json(first).await; + assert_eq!(listed.as_array().map(Vec::len), Some(1)); + assert_eq!(listed[0]["jobId"], "cal-evt-1"); + assert_eq!(listed[0]["status"], "pending"); + assert_eq!(response_json(second).await[0]["jobId"], "cal-evt-1"); + + let canceled = app + .oneshot( + Request::delete("/v1/workspaces/workspace-a/scheduled-captures/evt-1") + .header(header::AUTHORIZATION, format!("Bearer {TOKEN_A}")) + .body(Body::empty()) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(canceled.status(), StatusCode::OK); + assert_eq!(response_json(canceled).await["status"], "canceled"); +} + +#[tokio::test] +async fn offline_license_forbids_unlicensed_workspaces() { + let claims = LicenseClaims { + customer_id: "acme".into(), + workspace_ids: vec!["workspace-b".into()], + not_before: chrono::DateTime::parse_from_rfc3339("2026-01-01T00:00:00Z") + .unwrap() + .with_timezone(&chrono::Utc), + expires_at: None, + features: Default::default(), + }; + let key = "0123456789abcdef0123456789abcdef"; + let token = License::issue(&claims, key).unwrap(); + let license = License::parse( + &token, + key, + chrono::DateTime::parse_from_rfc3339("2026-08-21T00:00:00Z") + .unwrap() + .with_timezone(&chrono::Utc), + ) + .unwrap(); + let app = router(state(true).with_license(license)); + let denied = app + .oneshot( + Request::get("/v1/workspaces/workspace-a/scheduled-captures") + .header(header::AUTHORIZATION, format!("Bearer {TOKEN_A}")) + .body(Body::empty()) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(denied.status(), StatusCode::FORBIDDEN); +} diff --git a/enterprise/control-plane/tests/upgrade.rs b/enterprise/control-plane/tests/upgrade.rs new file mode 100644 index 0000000000..a7f0fcb77e --- /dev/null +++ b/enterprise/control-plane/tests/upgrade.rs @@ -0,0 +1,38 @@ +use std::{fs, path::PathBuf}; + +#[test] +fn control_plane_migrations_are_additive() { + let migrations = PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("migrations"); + let mut files: Vec<_> = fs::read_dir(&migrations) + .unwrap() + .map(|entry| entry.unwrap().path()) + .filter(|path| path.extension().and_then(|ext| ext.to_str()) == Some("sql")) + .collect(); + files.sort(); + assert!(!files.is_empty()); + + for path in files { + let sql = fs::read_to_string(&path).unwrap(); + let normalized = sql + .lines() + .filter(|line| !line.trim_start().starts_with("--")) + .collect::>() + .join("\n") + .to_uppercase(); + assert!( + !normalized.contains("DROP TABLE"), + "{} drops a table and would lose durable capture jobs", + path.display() + ); + assert!( + !normalized.contains("DROP COLUMN"), + "{} drops a column and would lose durable capture jobs", + path.display() + ); + assert!( + !normalized.contains("RENAME COLUMN"), + "{} renames a column and would break older capture jobs", + path.display() + ); + } +} diff --git a/enterprise/deploy/NOTICE b/enterprise/deploy/NOTICE new file mode 100644 index 0000000000..f8dade2ba3 --- /dev/null +++ b/enterprise/deploy/NOTICE @@ -0,0 +1,8 @@ +Third-party software in the customer-hosted capture data plane: + +- PostgreSQL (postgres:17-alpine), PostgreSQL License +- MinIO (minio/minio), GNU AGPLv3 — object storage is an optional bundled dependency; customers may substitute any S3-compatible store +- Chromium and fonts-liberation in the Google Meet worker image, BSD/MIT/LGPL as shipped by Debian +- Vexa Apache-2.0 reference material: see `enterprise/google-meet-worker/THIRD_PARTY_NOTICES.md` + +Pinned image digests live in Compose files. Helm `values.yaml` uses the same tagged images; production installs should pin digests in an overlay. diff --git a/enterprise/deploy/compose.prod.yaml b/enterprise/deploy/compose.prod.yaml new file mode 100644 index 0000000000..686156f5e3 --- /dev/null +++ b/enterprise/deploy/compose.prod.yaml @@ -0,0 +1,93 @@ +name: anarlog-enterprise-capture + +services: + postgres: + image: postgres:17-alpine@sha256:18cfe3ef5e6815560c98237d6216d1e5119702fb0f3894c8785dd58b8bbe5d73 + restart: unless-stopped + environment: + POSTGRES_DB: ${POSTGRES_DB:?set POSTGRES_DB} + POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:?set POSTGRES_PASSWORD} + POSTGRES_USER: ${POSTGRES_USER:?set POSTGRES_USER} + healthcheck: + test: + [ + "CMD-SHELL", + 'pg_isready --username "$${POSTGRES_USER}" --dbname "$${POSTGRES_DB}"', + ] + interval: 5s + timeout: 3s + retries: 12 + start_period: 5s + security_opt: + - no-new-privileges:true + volumes: + - postgres-data:/var/lib/postgresql/data + + object-storage: + image: minio/minio:RELEASE.2025-07-23T15-54-02Z + restart: unless-stopped + command: ["server", "/data", "--console-address", ":9001"] + environment: + MINIO_ROOT_USER: ${MINIO_ROOT_USER:?set MINIO_ROOT_USER} + MINIO_ROOT_PASSWORD: ${MINIO_ROOT_PASSWORD:?set MINIO_ROOT_PASSWORD} + healthcheck: + test: ["CMD", "curl", "-f", "http://127.0.0.1:9000/minio/health/live"] + interval: 10s + timeout: 3s + retries: 12 + volumes: + - object-data:/data + + control-plane: + image: ${ANARLOG_CONTROL_PLANE_IMAGE:-anarlog-enterprise-control-plane:release} + build: + context: ../.. + dockerfile: enterprise/control-plane/Dockerfile + restart: unless-stopped + depends_on: + postgres: + condition: service_healthy + environment: + ANARLOG_ENTERPRISE_DATABASE_URL: ${ANARLOG_ENTERPRISE_DATABASE_URL:?set ANARLOG_ENTERPRISE_DATABASE_URL} + ANARLOG_ENTERPRISE_DATABASE_MAX_CONNECTIONS: ${ANARLOG_ENTERPRISE_DATABASE_MAX_CONNECTIONS:-10} + ANARLOG_ENTERPRISE_WORKSPACE_TOKENS: ${ANARLOG_ENTERPRISE_WORKSPACE_TOKENS:?set ANARLOG_ENTERPRISE_WORKSPACE_TOKENS} + ANARLOG_ENTERPRISE_LICENSE: ${ANARLOG_ENTERPRISE_LICENSE:?set ANARLOG_ENTERPRISE_LICENSE} + ANARLOG_ENTERPRISE_LICENSE_KEY: ${ANARLOG_ENTERPRISE_LICENSE_KEY:?set ANARLOG_ENTERPRISE_LICENSE_KEY} + ANARLOG_ENTERPRISE_ZOOM_CLIENT_ID: ${ANARLOG_ENTERPRISE_ZOOM_CLIENT_ID:-} + ANARLOG_ENTERPRISE_ZOOM_CLIENT_SECRET: ${ANARLOG_ENTERPRISE_ZOOM_CLIENT_SECRET:-} + ANARLOG_ENTERPRISE_ZOOM_WEBHOOK_SECRET: ${ANARLOG_ENTERPRISE_ZOOM_WEBHOOK_SECRET:-} + ANARLOG_ENTERPRISE_ZOOM_ACCOUNT_WORKSPACES: ${ANARLOG_ENTERPRISE_ZOOM_ACCOUNT_WORKSPACES:-} + RUST_LOG: ${RUST_LOG:-info,tower_http=info} + ports: + - 127.0.0.1:${ANARLOG_ENTERPRISE_PORT:-8080}:8080 + read_only: true + security_opt: + - no-new-privileges:true + tmpfs: + - /tmp:rw,noexec,nosuid,size=16m + + google-meet-worker: + image: ${ANARLOG_GOOGLE_MEET_WORKER_IMAGE:-anarlog-enterprise-google-meet-worker:release} + build: + context: ../.. + dockerfile: enterprise/google-meet-worker/Dockerfile + restart: unless-stopped + depends_on: + control-plane: + condition: service_healthy + environment: + ANARLOG_ENTERPRISE_CONTROL_PLANE_URL: ${ANARLOG_ENTERPRISE_CONTROL_PLANE_URL:-http://control-plane:8080} + ANARLOG_ENTERPRISE_WORKSPACE_ID: ${ANARLOG_ENTERPRISE_WORKSPACE_ID:?set ANARLOG_ENTERPRISE_WORKSPACE_ID} + ANARLOG_ENTERPRISE_CAPTURE_JOB_ID: ${ANARLOG_ENTERPRISE_CAPTURE_JOB_ID:-} + ANARLOG_ENTERPRISE_WORKSPACE_TOKEN: ${ANARLOG_ENTERPRISE_WORKSPACE_TOKEN:?set ANARLOG_ENTERPRISE_WORKSPACE_TOKEN} + ANARLOG_ENTERPRISE_BOT_NAME: ${ANARLOG_ENTERPRISE_BOT_NAME:-Anarlog Notetaker} + ANARLOG_ENTERPRISE_STT_URL: ${ANARLOG_ENTERPRISE_STT_URL:-} + RUST_LOG: ${RUST_LOG:-info} + volumes: + - recordings:/var/lib/anarlog/recordings + shm_size: 1gb + +volumes: + postgres-data: + object-data: + recordings: diff --git a/enterprise/deploy/docs/operations.md b/enterprise/deploy/docs/operations.md new file mode 100644 index 0000000000..e6f6356ff0 --- /dev/null +++ b/enterprise/deploy/docs/operations.md @@ -0,0 +1,44 @@ +# Capture data plane operations + +This is the customer-hosted meeting capture distribution. Evaluation Compose does not require an offline license. Production Compose and Helm do. + +## Layout + +| Mode | Manifest | License | Typical use | +| --- | --- | --- | --- | +| Evaluation | `enterprise/control-plane/compose.yaml` | optional | Single-box soak of the control plane | +| Production Compose | `enterprise/deploy/compose.prod.yaml` | required | Compose on customer VMs | +| Production Helm | `enterprise/deploy/helm/anarlog-capture` | required | Kubernetes | + +Pinned images live in the Compose files and Helm `values.yaml`. Do not float untagged `latest`. + +## Secrets + +Customer-managed, never committed: + +- `ANARLOG_ENTERPRISE_WORKSPACE_TOKENS` / Helm `workspaceTokens.existingSecret` +- `ANARLOG_ENTERPRISE_LICENSE` + `ANARLOG_ENTERPRISE_LICENSE_KEY` +- Postgres and object-storage passwords +- Optional Zoom client/webhook secrets +- Optional customer STT URL (`ANARLOG_ENTERPRISE_STT_URL`) + +Offline license validation uses HMAC-SHA256 over versioned claims. Telemetry is not exported; scrape `/health/live` and `/health/ready` from customer-owned collectors. + +## Health, backups, upgrades + +- Control plane liveness/readiness: `/health/live`, `/health/ready`. +- Back up Postgres volume `postgres-data` (durable jobs, leases, scheduled captures), object storage `object-data`, and the Meet worker recordings PVC separately. +- Schema migrations are additive. Roll forward by deploying the new image; roll back by redeploying the previous image so long as no `-- breaking` migration was applied. +- Capture workers are fenced by durable leases. A crashed replica does not strand a job: another worker can reclaim after lease expiry. + +## Capture workers + +Google Meet workers join as a visible Anarlog participant. If `ANARLOG_ENTERPRISE_CAPTURE_JOB_ID` is unset they poll dispatched calendar jobs for the workspace. Zoom uses RTMS in the control plane (no browser bot). Optional STT is customer-hosted; leaving `ANARLOG_ENTERPRISE_STT_URL` empty keeps transcript finalization local to whatever the worker is configured with. + +## Network + +The data plane must reach the meeting platform (Meet, Zoom, or Teams). A fully air-gapped cluster cannot join public cloud meetings. Outbound policy should allow only the meeting provider, customer STT, and object storage. + +## Stock client + +Point the stock Anarlog desktop/web client at the customer control plane workspace token and session ingest endpoints. No Fastrepl-operated capture service is required after this package is running. diff --git a/enterprise/deploy/helm/anarlog-capture/Chart.yaml b/enterprise/deploy/helm/anarlog-capture/Chart.yaml new file mode 100644 index 0000000000..e5f2981495 --- /dev/null +++ b/enterprise/deploy/helm/anarlog-capture/Chart.yaml @@ -0,0 +1,6 @@ +apiVersion: v2 +name: anarlog-capture +description: Customer-hosted Anarlog enterprise meeting capture data plane +type: application +version: 0.1.0 +appVersion: "0.1.0" diff --git a/enterprise/deploy/helm/anarlog-capture/templates/_helpers.tpl b/enterprise/deploy/helm/anarlog-capture/templates/_helpers.tpl new file mode 100644 index 0000000000..68a7038cd8 --- /dev/null +++ b/enterprise/deploy/helm/anarlog-capture/templates/_helpers.tpl @@ -0,0 +1,9 @@ +{{- define "anarlog-capture.fullname" -}} +{{- default .Chart.Name .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}} +{{- end -}} +{{- define "anarlog-capture.secretName" -}} +{{- .Values.workspaceTokens.existingSecret -}} +{{- end -}} +{{- define "anarlog-capture.licenseSecretName" -}} +{{- .Values.license.existingSecret -}} +{{- end -}} diff --git a/enterprise/deploy/helm/anarlog-capture/templates/control-plane.yaml b/enterprise/deploy/helm/anarlog-capture/templates/control-plane.yaml new file mode 100644 index 0000000000..eac3f28e6f --- /dev/null +++ b/enterprise/deploy/helm/anarlog-capture/templates/control-plane.yaml @@ -0,0 +1,204 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "anarlog-capture.fullname" . }}-control-plane + labels: + app.kubernetes.io/name: anarlog-capture + app.kubernetes.io/component: control-plane +spec: + replicas: {{ .Values.replicaCount }} + selector: + matchLabels: + app.kubernetes.io/name: anarlog-capture + app.kubernetes.io/component: control-plane + template: + metadata: + labels: + app.kubernetes.io/name: anarlog-capture + app.kubernetes.io/component: control-plane + spec: + containers: + - name: control-plane + image: {{ .Values.image.controlPlane | quote }} + imagePullPolicy: {{ .Values.image.pullPolicy }} + ports: + - containerPort: 8080 + name: http + env: + - name: ANARLOG_ENTERPRISE_BIND_ADDRESS + value: 0.0.0.0:8080 + - name: ANARLOG_ENTERPRISE_DATABASE_URL + valueFrom: + secretKeyRef: + name: {{ .Values.workspaceTokens.existingSecret }} + key: databaseUrl + - name: ANARLOG_ENTERPRISE_WORKSPACE_TOKENS + valueFrom: + secretKeyRef: + name: {{ .Values.workspaceTokens.existingSecret }} + key: workspaceTokens + - name: ANARLOG_ENTERPRISE_LICENSE + valueFrom: + secretKeyRef: + name: {{ .Values.license.existingSecret }} + key: license + - name: ANARLOG_ENTERPRISE_LICENSE_KEY + valueFrom: + secretKeyRef: + name: {{ .Values.license.existingSecret }} + key: licenseKey + {{- if .Values.zoom.enabled }} + - name: ANARLOG_ENTERPRISE_ZOOM_CLIENT_ID + valueFrom: + secretKeyRef: + name: {{ .Values.workspaceTokens.existingSecret }} + key: zoomClientId + - name: ANARLOG_ENTERPRISE_ZOOM_CLIENT_SECRET + valueFrom: + secretKeyRef: + name: {{ .Values.workspaceTokens.existingSecret }} + key: zoomClientSecret + - name: ANARLOG_ENTERPRISE_ZOOM_WEBHOOK_SECRET + valueFrom: + secretKeyRef: + name: {{ .Values.workspaceTokens.existingSecret }} + key: zoomWebhookSecret + - name: ANARLOG_ENTERPRISE_ZOOM_ACCOUNT_WORKSPACES + valueFrom: + secretKeyRef: + name: {{ .Values.workspaceTokens.existingSecret }} + key: zoomAccountWorkspaces + {{- end }} + readinessProbe: + httpGet: + path: /health/ready + port: http + initialDelaySeconds: 10 + periodSeconds: 10 + livenessProbe: + httpGet: + path: /health/live + port: http + periodSeconds: 10 + resources: + {{- toYaml .Values.resources.controlPlane | nindent 12 }} + securityContext: + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + runAsNonRoot: true + runAsUser: 10001 +--- +apiVersion: v1 +kind: Service +metadata: + name: {{ include "anarlog-capture.fullname" . }} + labels: + app.kubernetes.io/name: anarlog-capture + app.kubernetes.io/component: control-plane +spec: + type: {{ .Values.service.type }} + ports: + - port: {{ .Values.service.port }} + targetPort: http + name: http + selector: + app.kubernetes.io/name: anarlog-capture + app.kubernetes.io/component: control-plane +{{- if .Values.googleMeetWorker.enabled }} +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "anarlog-capture.fullname" . }}-google-meet-worker + labels: + app.kubernetes.io/name: anarlog-capture + app.kubernetes.io/component: google-meet-worker +spec: + replicas: {{ .Values.googleMeetWorker.replicas }} + selector: + matchLabels: + app.kubernetes.io/name: anarlog-capture + app.kubernetes.io/component: google-meet-worker + template: + metadata: + labels: + app.kubernetes.io/name: anarlog-capture + app.kubernetes.io/component: google-meet-worker + spec: + containers: + - name: google-meet-worker + image: {{ .Values.image.googleMeetWorker | quote }} + imagePullPolicy: {{ .Values.image.pullPolicy }} + env: + - name: ANARLOG_ENTERPRISE_CONTROL_PLANE_URL + value: http://{{ include "anarlog-capture.fullname" . }}:{{ .Values.service.port }} + - name: ANARLOG_ENTERPRISE_WORKSPACE_ID + valueFrom: + secretKeyRef: + name: {{ .Values.workspaceTokens.existingSecret }} + key: workspaceId + - name: ANARLOG_ENTERPRISE_WORKSPACE_TOKEN + valueFrom: + secretKeyRef: + name: {{ .Values.workspaceTokens.existingSecret }} + key: workspaceToken + - name: ANARLOG_ENTERPRISE_RECORDING_ROOT + value: /var/lib/anarlog/recordings + {{- if .Values.googleMeetWorker.sttUrl }} + - name: ANARLOG_ENTERPRISE_STT_URL + value: {{ .Values.googleMeetWorker.sttUrl | quote }} + {{- end }} + {{- if .Values.googleMeetWorker.captureJobId }} + - name: ANARLOG_ENTERPRISE_CAPTURE_JOB_ID + value: {{ .Values.googleMeetWorker.captureJobId | quote }} + {{- end }} + resources: + {{- toYaml .Values.resources.worker | nindent 12 }} + volumeMounts: + - name: recordings + mountPath: /var/lib/anarlog/recordings + volumes: + - name: recordings + {{- if .Values.googleMeetWorker.recordings.persistence.enabled }} + persistentVolumeClaim: + claimName: {{ include "anarlog-capture.fullname" . }}-recordings + {{- else }} + emptyDir: {} + {{- end }} +{{- end }} +{{- if and .Values.googleMeetWorker.enabled .Values.googleMeetWorker.recordings.persistence.enabled }} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: {{ include "anarlog-capture.fullname" . }}-recordings + labels: + app.kubernetes.io/name: anarlog-capture + app.kubernetes.io/component: google-meet-worker +spec: + accessModes: ["ReadWriteOnce"] + resources: + requests: + storage: {{ .Values.googleMeetWorker.recordings.persistence.size }} +{{- end }} +{{- if .Values.observability.serviceMonitor }} +--- +apiVersion: monitoring.coreos.com/v1 +kind: ServiceMonitor +metadata: + name: {{ include "anarlog-capture.fullname" . }} + labels: + app.kubernetes.io/name: anarlog-capture + {{- with .Values.observability.extraLabels }} + {{- toYaml . | nindent 4 }} + {{- end }} +spec: + selector: + matchLabels: + app.kubernetes.io/name: anarlog-capture + app.kubernetes.io/component: control-plane + endpoints: + - port: http + path: /health/ready + interval: 30s +{{- end }} diff --git a/enterprise/deploy/helm/anarlog-capture/templates/data-plane.yaml b/enterprise/deploy/helm/anarlog-capture/templates/data-plane.yaml new file mode 100644 index 0000000000..49621c3a0e --- /dev/null +++ b/enterprise/deploy/helm/anarlog-capture/templates/data-plane.yaml @@ -0,0 +1,117 @@ +{{- if .Values.postgres.enabled }} +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: {{ include "anarlog-capture.fullname" . }}-postgres + labels: + app.kubernetes.io/name: anarlog-capture + app.kubernetes.io/component: postgres +spec: + serviceName: {{ include "anarlog-capture.fullname" . }}-postgres + replicas: 1 + selector: + matchLabels: + app.kubernetes.io/name: anarlog-capture + app.kubernetes.io/component: postgres + template: + metadata: + labels: + app.kubernetes.io/name: anarlog-capture + app.kubernetes.io/component: postgres + spec: + containers: + - name: postgres + image: {{ .Values.postgres.image | quote }} + env: + - name: POSTGRES_DB + value: {{ .Values.postgres.database | quote }} + - name: POSTGRES_USER + value: {{ .Values.postgres.user | quote }} + - name: POSTGRES_PASSWORD + valueFrom: + secretKeyRef: + name: {{ include "anarlog-capture.secretName" . }} + key: postgresPassword + ports: + - containerPort: 5432 + name: postgres + readinessProbe: + exec: + command: ["pg_isready", "-U", {{ .Values.postgres.user | quote }}] + periodSeconds: 10 + volumeMounts: + - name: data + mountPath: /var/lib/postgresql/data + volumeClaimTemplates: + - metadata: + name: data + spec: + accessModes: ["ReadWriteOnce"] + resources: + requests: + storage: {{ .Values.postgres.persistence.size }} +--- +apiVersion: v1 +kind: Service +metadata: + name: {{ include "anarlog-capture.fullname" . }}-postgres +spec: + ports: + - port: 5432 + targetPort: postgres + selector: + app.kubernetes.io/name: anarlog-capture + app.kubernetes.io/component: postgres +{{- end }} +{{- if .Values.objectStorage.enabled }} +--- +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: {{ include "anarlog-capture.fullname" . }}-object-storage + labels: + app.kubernetes.io/name: anarlog-capture + app.kubernetes.io/component: object-storage +spec: + serviceName: {{ include "anarlog-capture.fullname" . }}-object-storage + replicas: 1 + selector: + matchLabels: + app.kubernetes.io/name: anarlog-capture + app.kubernetes.io/component: object-storage + template: + metadata: + labels: + app.kubernetes.io/name: anarlog-capture + app.kubernetes.io/component: object-storage + spec: + containers: + - name: minio + image: {{ .Values.objectStorage.image | quote }} + args: ["server", "/data", "--console-address", ":9001"] + env: + - name: MINIO_ROOT_USER + valueFrom: + secretKeyRef: + name: {{ include "anarlog-capture.secretName" . }} + key: minioRootUser + - name: MINIO_ROOT_PASSWORD + valueFrom: + secretKeyRef: + name: {{ include "anarlog-capture.secretName" . }} + key: minioRootPassword + ports: + - containerPort: 9000 + name: s3 + volumeMounts: + - name: data + mountPath: /data + volumeClaimTemplates: + - metadata: + name: data + spec: + accessModes: ["ReadWriteOnce"] + resources: + requests: + storage: {{ .Values.objectStorage.persistence.size }} +{{- end }} diff --git a/enterprise/deploy/helm/anarlog-capture/values.yaml b/enterprise/deploy/helm/anarlog-capture/values.yaml new file mode 100644 index 0000000000..fa2a8ae196 --- /dev/null +++ b/enterprise/deploy/helm/anarlog-capture/values.yaml @@ -0,0 +1,59 @@ +replicaCount: 1 + +image: + controlPlane: anarlog-enterprise-control-plane:release + googleMeetWorker: anarlog-enterprise-google-meet-worker:release + pullPolicy: IfNotPresent + +service: + type: ClusterIP + port: 8080 + +postgres: + enabled: true + image: postgres:17-alpine + database: anarlog + user: anarlog + persistence: + size: 20Gi + +objectStorage: + enabled: true + image: minio/minio:RELEASE.2025-07-23T15-54-02Z + persistence: + size: 100Gi + +googleMeetWorker: + enabled: true + replicas: 1 + # When empty, the worker polls dispatched calendar jobs for the workspace. + captureJobId: "" + sttUrl: "" + recordings: + persistence: + enabled: true + size: 200Gi + +zoom: + enabled: false + +observability: + # Customer-owned metrics scrape of /health/ready. No telemetry is exported. + serviceMonitor: false + extraLabels: {} + +license: + existingSecret: anarlog-enterprise-license + +workspaceTokens: + existingSecret: anarlog-enterprise-workspace-tokens + +resources: + controlPlane: + requests: + cpu: 100m + memory: 256Mi + worker: + requests: + cpu: 500m + memory: 1Gi diff --git a/enterprise/docs/planning/access-control-remote-deletion.md b/enterprise/docs/planning/access-control-remote-deletion.md new file mode 100644 index 0000000000..35bb5249b0 --- /dev/null +++ b/enterprise/docs/planning/access-control-remote-deletion.md @@ -0,0 +1,25 @@ +# Enterprise access control and remote deletion + +ANLG-133. Spec only. + +## v1 admin surface + +Roles: workspace owner, admin, member. Owners transfer/delete the workspace. Admins manage members, invitations, share policy, retention, SSO/SCIM domain, and usage overview. Members read allowed share scopes and honor them in the share panel. + +Non-goals for v1: folder ACLs, per-note classification labels, MDM APIs, agent-specific roles, org-wide audit log UI beyond share access events. + +## Revocation + +- Remove member or SCIM deprovision: membership `deleted_at`, `sync_devices` deleted, E2EE workspace key rotation (ANLG-211). +- Sign out everywhere revokes refresh tokens. +- Offline devices keep local ciphertext until they next sync; they cannot decrypt rotated workspace keys. + +## Remote deletion + +Retention job `enforce_workspace_retention` soft-deletes expired `session_shares` and drops snapshots. CloudSync then stops serving those rows; local mirrors delete on next sync. Hard technical constraint: a device that never comes online cannot be forced to wipe. v1 states that limitation instead of pretending MDM exists. + +Audit: `session_access_events` is the share access log. Org-wide admin audit of exports/deletes is later. + +## Policy controls in v1 + +Allowed share scopes, default scope, retention days, model-training opt-out, consent notification default, require SSO. diff --git a/enterprise/docs/planning/compliance-procurement.md b/enterprise/docs/planning/compliance-procurement.md new file mode 100644 index 0000000000..341f42ba3d --- /dev/null +++ b/enterprise/docs/planning/compliance-procurement.md @@ -0,0 +1,19 @@ +# Compliance and procurement roadmap + +ANLG-136. + +## Immediate (sales/procurement, no certification claimed) + +- DPA, privacy policy, ToS, subprocessor list +- Security questionnaire answers grounded in: local-first E2EE, customer-hosted capture option, metadata-only analytics, offline license, no mandatory telemetry +- Incident response and access-review procedures for Fastrepl-operated cloud +- Data residency: customer-hosted data plane in the customer's region; Fastrepl cloud is US unless a certified-cloud SKU exists + +## Certification programs (later, separately funded) + +1. SOC 2 Type I then Type II for Fastrepl-operated cloud and control plane +2. ISO 27001 after SOC 2 evidence exists +3. AIUC-1 for agent access once CLI/MCP permission boundaries are productized (ANLG-138) +4. HIPAA: only if we take on BAAs for certified-cloud; self-hosted customers own their covered-entity posture + +Do not claim "HIPAA compliant" or "SOC 2" in product copy until the named program is complete. diff --git a/enterprise/docs/planning/consent-model.md b/enterprise/docs/planning/consent-model.md new file mode 100644 index 0000000000..0d35e11fd3 --- /dev/null +++ b/enterprise/docs/planning/consent-model.md @@ -0,0 +1,39 @@ +# Meeting recording disclosure and consent model + +Parent: ANLG-135. + +Posting a recording/transcription disclosure is an opt-in transport. A sent disclosure is not proof that every participant consented. Anarlog keeps disclosure delivery and consent evidence as separate product concepts. + +## V1 Slack huddle transport + +- `consent_auto_send_chat` defaults to false. +- After listening starts, Anarlog may post one disclosure to the recognized native Slack Huddle chat (macOS Accessibility only). +- Delivery is once-per-session, with bounded retry/cancellation. Posting failure never stops listening. +- The disclosure is excluded from captured Memos. +- Safe chat mutation stays disabled for Zoom, Meet, Teams, Webex, and browser surfaces until each has controlled live validation. + +## Evidence vs consent + +| Event | Product meaning | +| --- | --- | +| `session_disclosure_attempts` row with `delivery = sent` | Transport evidence only | +| `session_participant_consent.status = unknown` | Default, including late joiners | +| `status = consented` with `source` in `explicit_chat_reply` / `explicit_ui` | That participant answered; not legal consent for the room | +| `status = declined` | Stop listening. Still not a legal record of anyone else's choice | + +`sessionHasLegalConsent()` is always false. Schema CHECK constraints reject a `disclosure_sent` consent source. These tables are local-only and are not in CloudSync or the E2EE domain. + +## Decline, late joiners, unseen chat + +- Anyone declining stops listening. +- Late joiners start `unknown` / `unseen`. +- Participants who cannot see huddle chat remain `unknown`. +- Regional defaults, DPA language, and whether chat replies are sufficient evidence are counsel questions, not product defaults. + +## Enterprise controls + +Workspace admins can require or forbid auto-posting later via policy. They must not get an "everyone consented" dashboard derived from disclosure delivery. + +## Live verification + +Slack huddle AX send is macOS-only (`send_meeting_chat_message`). Linux/cloud agents cannot complete controlled live huddle testing. Unit and fixture coverage lives in `crates/detect` and `apps/desktop/src/stt/meeting-consent.test.ts`. diff --git a/enterprise/docs/planning/deployment-options.md b/enterprise/docs/planning/deployment-options.md new file mode 100644 index 0000000000..5e8bf5589a --- /dev/null +++ b/enterprise/docs/planning/deployment-options.md @@ -0,0 +1,19 @@ +# Self-hosted and certified-cloud deployment + +ANLG-137. + +## v1 recommended story + +Ship a **customer-controlled data plane**: commercially licensed control plane + Postgres + object storage + Meet worker + optional Zoom RTMS, running in the customer's VPC. The MIT desktop/web client still runs on Mac and Windows endpoints. This is not AGPL and not an air-gapped meeting joiner. + +Eval: `enterprise/control-plane/compose.yaml`. Prod: `enterprise/deploy/compose.prod.yaml` and Helm chart `anarlog-capture`. Operations: `enterprise/deploy/docs/operations.md`. + +## Later SKUs + +- Certified cloud: Fastrepl operates the same images in a named region under a BAA/DPA +- Full self-host of sync/auth (Supabase) is a separate product; v1 still uses Fastrepl or customer Supabase for identity +- Windows vs Mac local data paths stay in the MIT client; capture workers are Linux containers except the Teams Graph sidecar (Windows Server) + +## Tradeoffs + +Customers who need "no Fastrepl in the data path for meetings" take the Helm chart. Customers who need "no public meeting egress" cannot capture Meet/Zoom/Teams. Customers who need Teams take Azure + Windows Server after the Meet reliability gate (ANLG-232). diff --git a/enterprise/docs/planning/inference-routing.md b/enterprise/docs/planning/inference-routing.md new file mode 100644 index 0000000000..622044fd63 --- /dev/null +++ b/enterprise/docs/planning/inference-routing.md @@ -0,0 +1,25 @@ +# Enterprise-controlled inference routing + +ANLG-132. + +## Modes + +Transcription: + +- Local machine (on-device STT already in the desktop app) +- Customer-hosted STT (`ANARLOG_ENTERPRISE_STT_URL` on capture workers) +- Approved third-party cloud (BYO key in settings) +- Certified-cloud provider (later Fastrepl-operated region) + +LLM: + +- Local model +- Customer-hosted gateway +- Approved external API (BYO key) +- Certified-cloud provider (later) + +## Policy + +Workspace policy `model_training_opt_out` defaults on for enterprise. Admins can disable external model calls by leaving only local/customer-hosted providers in the allowed set. The desktop AI settings surface names the destination ("this computer", "your gateway", "approved cloud") and never the plumbing. + +v1 ships the policy flag and customer STT URL. Enforced provider allowlists in the LLM/STT proxies are the next implementation slice. diff --git a/enterprise/docs/planning/no-lock-in.md b/enterprise/docs/planning/no-lock-in.md new file mode 100644 index 0000000000..670f848f73 --- /dev/null +++ b/enterprise/docs/planning/no-lock-in.md @@ -0,0 +1,22 @@ +# No-lock-in data and agent access + +ANLG-138. + +## Promise + +Customers can inspect, export, automate, and leave with their Anarlog data. Notes are local-first SQLite. Cloud holds ciphertext plus metadata. Agents see only what the user (or workspace policy) grants. + +## Durable surfaces (v1) + +- Desktop/CLI against the local SQLite canonical model +- MCP tools that call the same local/session APIs +- Structured export of sessions (markdown/JSON) from the client +- Session ingest envelopes from the customer-hosted capture plane + +## Later + +Versioned HTTP API for automation, workspace-scoped agent tokens, and offboarding bundles that include E2EE key material the customer already holds. + +## Boundaries + +Local recordings and notes never become server-readable to satisfy an agent. Workspace remote deletion (ANLG-133) can drop cloud ciphertext; offline devices remain a disclosed limitation. Agent write-back is limited to the same session document schema the human editor uses. diff --git a/enterprise/docs/planning/owned-stack-roadmap.md b/enterprise/docs/planning/owned-stack-roadmap.md new file mode 100644 index 0000000000..f4884a6005 --- /dev/null +++ b/enterprise/docs/planning/owned-stack-roadmap.md @@ -0,0 +1,35 @@ +# Enterprise owned-stack readiness roadmap + +Parent: ANLG-131. + +Anarlog's enterprise position is that customers can own every sensitive part of the stack. The community application and shared contracts stay MIT. Enterprise orchestration, administration, deployment, licensing, and meeting-bot services are commercially licensed. + +## v1 advocacy vs later certification + +v1 is a customer-controlled data plane plus admin controls that are true in product, not marketing: + +- Local-first notes on Mac and Windows +- Customer-hosted capture (Google Meet visible bot, Zoom RTMS) +- Workspace policies, SSO/SCIM, metadata-only usage analytics +- Offline license validation, no mandatory telemetry +- CLI/MCP/export as the no-lock-in surface + +Later: SOC 2 / ISO 27001 / AIUC-1 / HIPAA programs, certified-cloud SKU, Teams Graph media bot in Azure, MDM remote wipe, virtual-camera disclosure. + +## Workstreams + +| Workstream | Tickets | v1 vs later | +| --- | --- | --- | +| Capture data plane | ANLG-223 and children | Meet + Zoom v1; Teams after Meet reliability | +| Inference routing | ANLG-132 | Policy model v1; certified-cloud providers later | +| Admin / deletion | ANLG-133, 216, 217, 218 | Policies + SSO/SCIM + analytics v1; MDM later | +| Disclosure / consent | ANLG-134, 135 | Slack huddle transport v1; virtual camera later | +| Trust / procurement | ANLG-136 | Questionnaires and DPA v1; certifications later | +| Deployment SKUs | ANLG-137, 233 | Customer-hosted data plane v1; certified cloud later | +| No lock-in | ANLG-138 | CLI/MCP/export v1; public HTTP API later | + +## Platform constraints + +- Mac and Windows both ship the MIT client. Linux is a cloud-agent/dev target, not a GA desktop SKU. +- Local-first SQLite remains the source of truth on device. Cloud rows are ciphertext plus metadata. +- Customer-hosted capture still needs egress to Meet/Zoom/Teams. Air-gap is "private data plane", not "join public meetings offline". diff --git a/enterprise/docs/planning/virtual-camera-disclosure.md b/enterprise/docs/planning/virtual-camera-disclosure.md new file mode 100644 index 0000000000..2e9a6537a1 --- /dev/null +++ b/enterprise/docs/planning/virtual-camera-disclosure.md @@ -0,0 +1,19 @@ +# Virtual camera disclosure + +ANLG-134. + +## Verdict + +Not v1. Technically viable later on both Mac and Windows, with a high installer/signing cost and uneven meeting-app compatibility. + +## macOS + +System extension / Camera Extension (CoreMediaIO) can publish a virtual camera. Meeting apps that list cameras (Zoom, Meet via Chrome, Teams) generally can select it. Requires notarization, TCC camera permission, and a separate extension target. Overlaying a "Recording" chip on the outgoing feed is the useful disclosure UX. Replacing the real camera entirely is too invasive for enterprise defaults. + +## Windows + +A virtual camera driver (DirectShow / Media Foundation, or OBS-style) can do the same. Signing (EV cert + attestation) and enterprise deployment via Intune/MSI are the real cost. Teams and Zoom on Windows honor virtual cameras; some GPU capture paths do not. + +## Product decision + +v1 disclosure is chat/email/bot-visible participant (ANLG-135), not a virtual camera. Revisit after capture reliability and when a customer is blocked on visual disclosure specifically. diff --git a/enterprise/docs/teams-capture.md b/enterprise/docs/teams-capture.md new file mode 100644 index 0000000000..f20a92b092 --- /dev/null +++ b/enterprise/docs/teams-capture.md @@ -0,0 +1,39 @@ +# Microsoft Teams enterprise capture + +## Selected connector + +Anarlog does **not** use a Chromium bot against the Teams web client. That path is unsupported against current Teams terms and DOM churn. + +The supported connector is a **Microsoft Graph application-hosted media bot** running as a Windows sidecar. The sidecar speaks the MIT `MeetingSdkBridge` protocol (JSON lines) to `anarlog-enterprise-meeting-sdk-bridge-worker`, which normalizes events onto the shared capture contract (`CaptureProviderKind::MicrosoftGraph`, `MeetingPlatform::MicrosoftTeams`). + +## Official alternative and constraints + +Graph application-hosted media requires: + +- Azure subscription and a Teams app with application-hosted media +- Windows Server for the media bot runtime +- Certificate/app registration, organizer policy, and lobby admission under tenant admin control + +This is **not** deployable on Linux-only clusters or a fully air-gapped network that cannot reach Teams/Graph. + +## Reliability matrix + +Replay fixtures in `enterprise/meeting-sdk-bridge-worker/tests/teams_reliability.rs` cover: + +| Scenario | Terminal reason | +| --- | --- | +| Admitted then capturing | (non-terminal) | +| Lobby timeout | `admission_timeout` | +| Organizer denied | `admission_denied` | +| Removed by organizer | `removed_from_meeting` | +| Meeting ended | `meeting_ended` | +| Participant upsert / leave / captions | non-terminal until host ends | + +## Deployment modes + +| Mode | Supported | +| --- | --- | +| Customer Azure + Windows Server sidecar | yes | +| Linux-only Helm capture chart | no (Meet/Zoom only) | +| Air-gapped / no Graph | no | +| Browser worker against teams.microsoft.com | no | diff --git a/enterprise/docs/zoom-rtms.md b/enterprise/docs/zoom-rtms.md new file mode 100644 index 0000000000..cce2f73b87 --- /dev/null +++ b/enterprise/docs/zoom-rtms.md @@ -0,0 +1,24 @@ +# Zoom RTMS enterprise capture + +Anarlog captures Zoom through [Realtime Media Streams](https://developers.zoom.us/docs/rtms/), not a browser bot. The meeting materializes as an Anarlog session from RTMS audio, transcript, chat, and participant events. + +## Customer tenant prerequisites + +1. Zoom account on a plan that includes **Zoom Developer Pack** / RTMS. +2. A Zoom app with RTMS scopes installed to the customer tenant (account-level). +3. Host or admin approval for the Anarlog app, plus any required recording disclosure in the Zoom admin console. +4. Webhook endpoint on the Anarlog control plane (`POST /webhooks/zoom`) with `ANARLOG_ENTERPRISE_ZOOM_WEBHOOK_SECRET`. +5. Control-plane env: + - `ANARLOG_ENTERPRISE_ZOOM_CLIENT_ID` + - `ANARLOG_ENTERPRISE_ZOOM_CLIENT_SECRET` + - `ANARLOG_ENTERPRISE_ZOOM_ACCOUNT_WORKSPACES` mapping Zoom account IDs to Anarlog workspace IDs + +## Runtime + +The control plane verifies Zoom webhooks, creates a durable capture job, and hands the RTMS session to `anarlog-enterprise-zoom-rtms-worker`. Stream reconnect, terminal reasons, and meeting finalization follow the shared capture contract. There is no visible third-party browser participant. + +## Limits + +- RTMS cannot join meetings the Zoom account is not authorized to record. +- Air-gapped deployments cannot reach Zoom's cloud media edge. +- Video frames are metadata-only in v1; audio + transcript + chat + participants are the durable session. diff --git a/enterprise/google-meet-worker/Cargo.toml b/enterprise/google-meet-worker/Cargo.toml index a6da7e5776..42ce2af4bf 100644 --- a/enterprise/google-meet-worker/Cargo.toml +++ b/enterprise/google-meet-worker/Cargo.toml @@ -7,6 +7,7 @@ license-file.workspace = true [dependencies] anlg-meeting-capture.workspace = true +anyhow.workspace = true async-trait.workspace = true base64.workspace = true chrono = { workspace = true, features = ["serde"] } @@ -16,9 +17,15 @@ serde = { workspace = true, features = ["derive"] } serde_json.workspace = true sha2.workspace = true thiserror.workspace = true -tokio = { workspace = true, features = ["fs", "io-util", "macros", "net", "process", "rt", "sync", "time"] } +tokio = { workspace = true, features = ["fs", "io-util", "macros", "net", "process", "rt", "rt-multi-thread", "signal", "sync", "time"] } tokio-tungstenite.workspace = true +tracing.workspace = true +tracing-subscriber = { workspace = true, features = ["env-filter", "fmt"] } url.workspace = true [dev-dependencies] tempfile = "3" + +[[bin]] +name = "anarlog-enterprise-google-meet-worker" +path = "src/bin/worker.rs" diff --git a/enterprise/google-meet-worker/Dockerfile b/enterprise/google-meet-worker/Dockerfile new file mode 100644 index 0000000000..4a6edd95de --- /dev/null +++ b/enterprise/google-meet-worker/Dockerfile @@ -0,0 +1,48 @@ +ARG RUST_IMAGE=rust:1.94.0-bookworm@sha256:365468470075493dc4583f47387001854321c5a8583ea9604b297e67f01c5a4f +ARG RUNTIME_IMAGE=debian:bookworm-slim@sha256:abd67ffcfa541b485a3dff59865ab629aa048a6c613e639d36e7456b0b229241 + +FROM ${RUST_IMAGE} AS builder + +WORKDIR /source +COPY . . +RUN cargo build \ + --locked \ + --manifest-path enterprise/Cargo.toml \ + --package anarlog-enterprise-google-meet-worker \ + --bin anarlog-enterprise-google-meet-worker \ + --release + +FROM ${RUNTIME_IMAGE} + +RUN apt-get update \ + && apt-get install --no-install-recommends --yes \ + ca-certificates \ + chromium \ + fonts-liberation \ + xdotool \ + xvfb \ + && rm -rf /var/lib/apt/lists/* \ + && groupadd --system --gid 10001 anarlog \ + && useradd \ + --uid 10001 \ + --gid 10001 \ + --create-home \ + --home-dir /var/lib/anarlog \ + --shell /usr/sbin/nologin \ + anarlog \ + && mkdir -p /var/lib/anarlog/recordings \ + && chown -R anarlog:anarlog /var/lib/anarlog + +COPY --from=builder /source/enterprise/target/release/anarlog-enterprise-google-meet-worker /usr/local/bin/anarlog-enterprise-google-meet-worker + +ENV DISPLAY=:99 +ENV ANARLOG_ENTERPRISE_CHROMIUM_BINARY=/usr/bin/chromium +ENV ANARLOG_ENTERPRISE_XDOTOOL_BINARY=/usr/bin/xdotool +ENV ANARLOG_ENTERPRISE_RECORDING_ROOT=/var/lib/anarlog/recordings +ENV ANARLOG_ENTERPRISE_DISABLE_SANDBOX=true +ENV RUST_LOG=info + +USER 10001:10001 +VOLUME ["/var/lib/anarlog/recordings"] + +ENTRYPOINT ["/usr/local/bin/anarlog-enterprise-google-meet-worker"] diff --git a/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/MATRIX.md b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/MATRIX.md new file mode 100644 index 0000000000..46f0fac3a0 --- /dev/null +++ b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/MATRIX.md @@ -0,0 +1,25 @@ +# Vexa v0.12.18 Google Meet behavior matrix + +Pinned reference: Vexa `v0.12.18`, commit `1b62993e7e97c6ee04a5dcb116f7749ec74169df`. +These fixtures are replayable snapshots of normalized Anarlog admission/runtime classifiers. They do not require Vexa internals at test time. + +| Fixture | Vexa module | Anarlog outcome | Terminal reason | Retryable | +| --- | --- | --- | --- | --- | +| `admission/host-denied.json` | `join/src/googlemeet/admission.ts` | Rejected HostDenied | `admission_denied` | no | +| `admission/waiting-room.json` | `join/src/googlemeet/admission.ts` | WaitingForAdmission | — | — | +| `admission/admitted.json` | `join/src/googlemeet/join.ts` | Admitted | — | — | +| `admission/captcha-unsolved.json` | `join/src/googlemeet/admission.ts` | Rejected CaptchaUnsolved | `authentication_failed` | no | +| `admission/error-page.json` | `join/src/googlemeet/admission.ts` | Rejected ErrorPage | `provider_error` | no | +| `admission/consent.json` | `join/src/googlemeet/admission.ts` | ConsentRequired | — | — | +| `runtime/removed.json` | `join/src/googlemeet/removal.ts` | Removed | `removed_from_meeting` | no | +| `runtime/meeting-ended.json` | `join/src/googlemeet/removal.ts` | MeetingEnded | `meeting_ended` | no | +| `runtime/network-lost.json` | `join/src/googlemeet/removal.ts` | NetworkLost after grace | `network_lost` | yes | +| `runtime/active.json` | `gmeet-capture/src/gmeet-capture.ts` | Active | — | — | +| `runtime/silence.json` | `gmeet-capture/src/pcm-capture.ts` | Active (no tiles besides bot) | `no_one_joined` after grace | yes | +| `runtime/nobody-joined.json` | `gmeet-capture/src/pcm-capture.ts` | Active until empty-room grace | `no_one_joined` | yes | +| `runtime/overlapping-speakers.json` | `gmeet-capture/src/gmeet-speakers.ts` | Active with two named tiles | — | — | +| `runtime/speaker-renamed.json` | `gmeet-capture/src/gmeet-speakers.ts` | Active with renamed tile | — | — | +| `runtime/unresolved-speaker.json` | `gmeet-capture/src/gmeet-speakers.ts` | Active with chrome chrome-ui tile | — | — | +| `runtime/long-duration.json` | `gmeet-capture/src/gmeet-capture.ts` | Active after two hours | — | — | + +Scenarios in `scenarios.json` replay the same snapshots through `WorkerLifecycle` and assert the provider-neutral terminal reason. diff --git a/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/admission/admitted.json b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/admission/admitted.json new file mode 100644 index 0000000000..913dc73860 --- /dev/null +++ b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/admission/admitted.json @@ -0,0 +1,18 @@ +{ + "id": "admitted", + "kind": "admission", + "elapsed_ms": 0, + "snapshot": { + "waiting_room_visible": false, + "consent_prompt_visible": false, + "explicit_denial_indicator": null, + "ambiguous_error_indicator": null, + "visible_recaptcha_challenge": false, + "participant_tile_labels": ["Ada Lovelace"], + "self_name_nodes": 1, + "visible_admission_controls": 1 + }, + "expected": { + "outcome": "admitted" + } +} diff --git a/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/admission/captcha-unsolved.json b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/admission/captcha-unsolved.json new file mode 100644 index 0000000000..669b1fad73 --- /dev/null +++ b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/admission/captcha-unsolved.json @@ -0,0 +1,20 @@ +{ + "id": "captcha-unsolved", + "kind": "admission", + "elapsed_ms": 120000, + "snapshot": { + "waiting_room_visible": false, + "consent_prompt_visible": false, + "explicit_denial_indicator": null, + "ambiguous_error_indicator": "Try again", + "visible_recaptcha_challenge": true, + "participant_tile_labels": [], + "self_name_nodes": 0, + "visible_admission_controls": 0 + }, + "expected": { + "outcome": "rejected", + "reason": "captcha_unsolved", + "indicator": "Try again" + } +} diff --git a/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/admission/consent.json b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/admission/consent.json new file mode 100644 index 0000000000..0ee268c4ec --- /dev/null +++ b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/admission/consent.json @@ -0,0 +1,18 @@ +{ + "id": "consent", + "kind": "admission", + "elapsed_ms": 0, + "snapshot": { + "waiting_room_visible": false, + "consent_prompt_visible": true, + "explicit_denial_indicator": null, + "ambiguous_error_indicator": null, + "visible_recaptcha_challenge": false, + "participant_tile_labels": ["Ada Lovelace"], + "self_name_nodes": 0, + "visible_admission_controls": 0 + }, + "expected": { + "outcome": "consent" + } +} diff --git a/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/admission/error-page.json b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/admission/error-page.json new file mode 100644 index 0000000000..724e017b6a --- /dev/null +++ b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/admission/error-page.json @@ -0,0 +1,20 @@ +{ + "id": "error-page", + "kind": "admission", + "elapsed_ms": 0, + "snapshot": { + "waiting_room_visible": false, + "consent_prompt_visible": false, + "explicit_denial_indicator": null, + "ambiguous_error_indicator": "can't join this video call", + "visible_recaptcha_challenge": false, + "participant_tile_labels": [], + "self_name_nodes": 0, + "visible_admission_controls": 0 + }, + "expected": { + "outcome": "rejected", + "reason": "error_page", + "indicator": "can't join this video call" + } +} diff --git a/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/admission/host-denied.json b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/admission/host-denied.json new file mode 100644 index 0000000000..c474e3920d --- /dev/null +++ b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/admission/host-denied.json @@ -0,0 +1,20 @@ +{ + "id": "host-denied", + "kind": "admission", + "elapsed_ms": 0, + "snapshot": { + "waiting_room_visible": true, + "consent_prompt_visible": false, + "explicit_denial_indicator": "denied your request", + "ambiguous_error_indicator": null, + "visible_recaptcha_challenge": false, + "participant_tile_labels": [], + "self_name_nodes": 0, + "visible_admission_controls": 0 + }, + "expected": { + "outcome": "rejected", + "reason": "host_denied", + "indicator": "denied your request" + } +} diff --git a/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/admission/waiting-room.json b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/admission/waiting-room.json new file mode 100644 index 0000000000..dbf23d14c4 --- /dev/null +++ b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/admission/waiting-room.json @@ -0,0 +1,18 @@ +{ + "id": "waiting-room", + "kind": "admission", + "elapsed_ms": 0, + "snapshot": { + "waiting_room_visible": true, + "consent_prompt_visible": false, + "explicit_denial_indicator": null, + "ambiguous_error_indicator": null, + "visible_recaptcha_challenge": false, + "participant_tile_labels": [], + "self_name_nodes": 0, + "visible_admission_controls": 2 + }, + "expected": { + "outcome": "waiting" + } +} diff --git a/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/active.json b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/active.json new file mode 100644 index 0000000000..bdbbe1f9e0 --- /dev/null +++ b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/active.json @@ -0,0 +1,16 @@ +{ + "id": "active", + "kind": "runtime", + "elapsed_ms": 0, + "snapshot": { + "removal_indicator": null, + "meeting_ended_indicator": null, + "connection_problem_indicator": null, + "participant_tile_labels": ["Ada Lovelace"], + "self_name_nodes": 1, + "visible_meeting_controls": 3 + }, + "expected": { + "outcome": "active" + } +} diff --git a/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/long-duration.json b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/long-duration.json new file mode 100644 index 0000000000..86de03a941 --- /dev/null +++ b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/long-duration.json @@ -0,0 +1,16 @@ +{ + "id": "long-duration", + "kind": "runtime", + "elapsed_ms": 7200000, + "snapshot": { + "removal_indicator": null, + "meeting_ended_indicator": null, + "connection_problem_indicator": null, + "participant_tile_labels": ["Ada Lovelace"], + "self_name_nodes": 1, + "visible_meeting_controls": 2 + }, + "expected": { + "outcome": "active" + } +} diff --git a/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/meeting-ended.json b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/meeting-ended.json new file mode 100644 index 0000000000..89f9d724c5 --- /dev/null +++ b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/meeting-ended.json @@ -0,0 +1,17 @@ +{ + "id": "meeting-ended", + "kind": "runtime", + "elapsed_ms": 0, + "snapshot": { + "removal_indicator": null, + "meeting_ended_indicator": "the meeting has ended", + "connection_problem_indicator": null, + "participant_tile_labels": [], + "self_name_nodes": 0, + "visible_meeting_controls": 0 + }, + "expected": { + "outcome": "meeting_ended", + "indicator": "the meeting has ended" + } +} diff --git a/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/network-lost.json b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/network-lost.json new file mode 100644 index 0000000000..2281d1fc91 --- /dev/null +++ b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/network-lost.json @@ -0,0 +1,17 @@ +{ + "id": "network-lost", + "kind": "runtime", + "elapsed_ms": 30000, + "snapshot": { + "removal_indicator": null, + "meeting_ended_indicator": null, + "connection_problem_indicator": "reconnecting", + "participant_tile_labels": ["Ada Lovelace"], + "self_name_nodes": 1, + "visible_meeting_controls": 1 + }, + "expected": { + "outcome": "network_lost", + "indicator": "reconnecting" + } +} diff --git a/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/nobody-joined.json b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/nobody-joined.json new file mode 100644 index 0000000000..470220d200 --- /dev/null +++ b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/nobody-joined.json @@ -0,0 +1,16 @@ +{ + "id": "nobody-joined", + "kind": "runtime", + "elapsed_ms": 600000, + "snapshot": { + "removal_indicator": null, + "meeting_ended_indicator": null, + "connection_problem_indicator": null, + "participant_tile_labels": [], + "self_name_nodes": 1, + "visible_meeting_controls": 1 + }, + "expected": { + "outcome": "active" + } +} diff --git a/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/overlapping-speakers.json b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/overlapping-speakers.json new file mode 100644 index 0000000000..8456ecd51c --- /dev/null +++ b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/overlapping-speakers.json @@ -0,0 +1,16 @@ +{ + "id": "overlapping-speakers", + "kind": "runtime", + "elapsed_ms": 0, + "snapshot": { + "removal_indicator": null, + "meeting_ended_indicator": null, + "connection_problem_indicator": null, + "participant_tile_labels": ["Ada Lovelace", "Grace Hopper"], + "self_name_nodes": 1, + "visible_meeting_controls": 3 + }, + "expected": { + "outcome": "active" + } +} diff --git a/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/removed.json b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/removed.json new file mode 100644 index 0000000000..2b80ef4240 --- /dev/null +++ b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/removed.json @@ -0,0 +1,17 @@ +{ + "id": "removed", + "kind": "runtime", + "elapsed_ms": 0, + "snapshot": { + "removal_indicator": "you were removed", + "meeting_ended_indicator": null, + "connection_problem_indicator": null, + "participant_tile_labels": [], + "self_name_nodes": 0, + "visible_meeting_controls": 0 + }, + "expected": { + "outcome": "removed", + "indicator": "you were removed" + } +} diff --git a/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/silence.json b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/silence.json new file mode 100644 index 0000000000..420fa21f1b --- /dev/null +++ b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/silence.json @@ -0,0 +1,16 @@ +{ + "id": "silence", + "kind": "runtime", + "elapsed_ms": 0, + "snapshot": { + "removal_indicator": null, + "meeting_ended_indicator": null, + "connection_problem_indicator": null, + "participant_tile_labels": [], + "self_name_nodes": 1, + "visible_meeting_controls": 1 + }, + "expected": { + "outcome": "active" + } +} diff --git a/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/speaker-renamed.json b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/speaker-renamed.json new file mode 100644 index 0000000000..b2bb9e5aaa --- /dev/null +++ b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/speaker-renamed.json @@ -0,0 +1,16 @@ +{ + "id": "speaker-renamed", + "kind": "runtime", + "elapsed_ms": 0, + "snapshot": { + "removal_indicator": null, + "meeting_ended_indicator": null, + "connection_problem_indicator": null, + "participant_tile_labels": ["Ada L."], + "self_name_nodes": 1, + "visible_meeting_controls": 3 + }, + "expected": { + "outcome": "active" + } +} diff --git a/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/unresolved-speaker.json b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/unresolved-speaker.json new file mode 100644 index 0000000000..e4ad61a672 --- /dev/null +++ b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/runtime/unresolved-speaker.json @@ -0,0 +1,16 @@ +{ + "id": "unresolved-speaker", + "kind": "runtime", + "elapsed_ms": 0, + "snapshot": { + "removal_indicator": null, + "meeting_ended_indicator": null, + "connection_problem_indicator": null, + "participant_tile_labels": ["visual_effects Backgrounds and effects"], + "self_name_nodes": 1, + "visible_meeting_controls": 1 + }, + "expected": { + "outcome": "active" + } +} diff --git a/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/scenarios.json b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/scenarios.json new file mode 100644 index 0000000000..4aea5fc2b0 --- /dev/null +++ b/enterprise/google-meet-worker/fixtures/vexa-v0.12.18/scenarios.json @@ -0,0 +1,95 @@ +[ + { + "id": "admitted-then-kicked", + "expected_state": "failed", + "expected_terminal": "removed_from_meeting", + "retryable": false, + "steps": [ + { "action": "launch" }, + { "action": "admission", "fixture": "admission/admitted.json" }, + { "action": "capture_started" }, + { "action": "runtime", "fixture": "runtime/removed.json" } + ] + }, + { + "id": "host-ended-meeting", + "expected_state": "completed", + "expected_terminal": "meeting_ended", + "retryable": false, + "steps": [ + { "action": "launch" }, + { "action": "admission", "fixture": "admission/admitted.json" }, + { "action": "capture_started" }, + { "action": "runtime", "fixture": "runtime/meeting-ended.json" } + ] + }, + { + "id": "host-denied-before-join", + "expected_state": "failed", + "expected_terminal": "admission_denied", + "retryable": false, + "steps": [ + { "action": "launch" }, + { "action": "admission", "fixture": "admission/host-denied.json" } + ] + }, + { + "id": "lobby-timeout", + "expected_state": "failed", + "expected_terminal": "admission_timeout", + "retryable": true, + "steps": [ + { "action": "launch" }, + { "action": "admission", "fixture": "admission/waiting-room.json" }, + { "action": "admission_timeout" } + ] + }, + { + "id": "network-lost-after-grace", + "expected_state": "failed", + "expected_terminal": "network_lost", + "retryable": true, + "steps": [ + { "action": "launch" }, + { "action": "admission", "fixture": "admission/admitted.json" }, + { "action": "capture_started" }, + { "action": "runtime", "fixture": "runtime/network-lost.json" } + ] + }, + { + "id": "worker-crash-after-join", + "expected_state": "failed", + "expected_terminal": "worker_exited", + "retryable": true, + "steps": [ + { "action": "launch" }, + { "action": "admission", "fixture": "admission/admitted.json" }, + { "action": "capture_started" }, + { "action": "worker_exited", "message": "chromium exited with status 1" } + ] + }, + { + "id": "stt-outage", + "expected_state": "failed", + "expected_terminal": "provider_error", + "retryable": true, + "steps": [ + { "action": "launch" }, + { "action": "admission", "fixture": "admission/admitted.json" }, + { "action": "capture_started" }, + { "action": "stt_unavailable", "message": "speech-to-text endpoint returned 503" } + ] + }, + { + "id": "nobody-joined-timeout", + "expected_state": "failed", + "expected_terminal": "no_one_joined", + "retryable": true, + "steps": [ + { "action": "launch" }, + { "action": "admission", "fixture": "admission/admitted.json" }, + { "action": "capture_started" }, + { "action": "runtime", "fixture": "runtime/nobody-joined.json" } + ] + } +] diff --git a/enterprise/google-meet-worker/src/bin/worker.rs b/enterprise/google-meet-worker/src/bin/worker.rs new file mode 100644 index 0000000000..a3ecebb0f5 --- /dev/null +++ b/enterprise/google-meet-worker/src/bin/worker.rs @@ -0,0 +1,261 @@ +use std::{env, path::PathBuf, time::Duration}; + +use anarlog_enterprise_google_meet_worker::{ + AdmissionMonitorConfig, CaptureJobSupervisor, CaptureJobSupervisorConfig, + CaptureJobSupervisorOutcome, ChromiumLaunchConfig, ChunkedRecordingConfig, + ChunkedRecordingSink, ControlPlaneEventSink, ControlPlaneEventSinkConfig, + FilesystemRecordingStore, GoogleMeetRuntime, GoogleMeetRuntimeConfig, X11InputConfig, +}; +use anlg_meeting_capture::MeetingPlatform; +use serde::Deserialize; +use tokio::sync::watch; +use tracing_subscriber::EnvFilter; +use url::Url; + +#[tokio::main] +async fn main() -> anyhow::Result<()> { + tracing_subscriber::fmt() + .with_env_filter( + EnvFilter::try_from_default_env().unwrap_or_else(|_| EnvFilter::new("info")), + ) + .try_init() + .ok(); + + let config = WorkerConfig::from_env()?; + if let Some(job_id) = config.job_id.clone() { + return run_job(&config, job_id).await; + } + + tracing::info!("polling control plane for dispatched Google Meet capture jobs"); + let client = reqwest::Client::new(); + let mut shutdown = false; + let (shutdown_tx, mut shutdown_rx) = watch::channel(false); + tokio::spawn(async move { + shutdown_signal().await; + let _ = shutdown_tx.send(true); + }); + loop { + if *shutdown_rx.borrow() { + break; + } + match list_dispatched_meet_jobs(&client, &config).await { + Ok(job_ids) => { + for job_id in job_ids { + if *shutdown_rx.borrow() { + shutdown = true; + break; + } + if let Err(error) = run_job(&config, job_id.clone()).await { + tracing::warn!(job_id, error = %error, "google meet capture job failed"); + } + } + } + Err(error) => { + tracing::warn!(error = %error, "failed to list dispatched capture jobs"); + } + } + if shutdown { + break; + } + tokio::select! { + _ = shutdown_rx.changed() => break, + _ = tokio::time::sleep(Duration::from_secs(15)) => {} + } + } + Ok(()) +} + +async fn run_job(config: &WorkerConfig, job_id: String) -> anyhow::Result<()> { + let store = FilesystemRecordingStore::new(&config.recording_root).await?; + let sink = ChunkedRecordingSink::new( + ChunkedRecordingConfig { + object_prefix: format!("{}/{}", config.workspace_id, job_id), + chunk_duration: Duration::from_secs(60), + max_lateness: Duration::from_secs(5), + }, + store, + )?; + let runtime = GoogleMeetRuntime::new( + GoogleMeetRuntimeConfig { + chromium: ChromiumLaunchConfig { + binary: config.chromium_binary.clone(), + user_data_dir: config.chromium_profile.clone(), + locale: "en-US".into(), + authenticated: config.authenticated, + headless: false, + disable_sandbox: config.disable_sandbox, + startup_timeout: Duration::from_secs(30), + }, + x11: X11InputConfig { + binary: config.xdotool_binary.clone(), + display: config.display.clone(), + command_timeout: Duration::from_secs(5), + }, + bot_name: config.bot_name.clone(), + admission: AdmissionMonitorConfig::default(), + runtime_poll_interval: Duration::from_secs(1), + }, + sink, + )?; + let control_plane = ControlPlaneEventSink::new(ControlPlaneEventSinkConfig::new( + config.control_plane_url.clone(), + config.workspace_id.clone(), + job_id, + config.workspace_token.clone(), + ))?; + let supervisor = CaptureJobSupervisor::new( + control_plane, + runtime, + config.worker_id.clone(), + format!("lease-{}", std::process::id()), + CaptureJobSupervisorConfig::default(), + )?; + + let (shutdown_tx, shutdown_rx) = watch::channel(false); + tokio::spawn(async move { + shutdown_signal().await; + let _ = shutdown_tx.send(true); + }); + + match supervisor.run(shutdown_rx).await? { + CaptureJobSupervisorOutcome::AlreadyTerminal(state) => { + tracing::info!(?state, "capture job was already terminal"); + } + CaptureJobSupervisorOutcome::ShutdownBeforeClaim => { + tracing::info!("shutdown received before the capture lease was claimed"); + } + CaptureJobSupervisorOutcome::Terminal(state) => { + tracing::info!(?state, "capture job reached a terminal state"); + } + } + Ok(()) +} + +async fn list_dispatched_meet_jobs( + client: &reqwest::Client, + config: &WorkerConfig, +) -> anyhow::Result> { + let url = config.control_plane_url.join(&format!( + "/v1/workspaces/{}/scheduled-captures", + config.workspace_id + ))?; + let response = client + .get(url) + .bearer_auth(&config.workspace_token) + .send() + .await?; + if !response.status().is_success() { + anyhow::bail!("control plane returned {}", response.status()); + } + let scheduled: Vec = response.json().await?; + Ok(scheduled + .into_iter() + .filter(|row| { + row.status == "dispatched" + && row.meeting.platform == MeetingPlatform::GoogleMeet + && row.job_id.is_some() + }) + .filter_map(|row| row.job_id) + .collect()) +} + +#[derive(Debug, Deserialize)] +#[serde(rename_all = "camelCase")] +struct ListedCapture { + job_id: Option, + status: String, + meeting: ListedMeeting, +} + +#[derive(Debug, Deserialize)] +#[serde(rename_all = "camelCase")] +struct ListedMeeting { + platform: MeetingPlatform, +} + +struct WorkerConfig { + control_plane_url: Url, + workspace_id: String, + job_id: Option, + workspace_token: String, + worker_id: String, + bot_name: String, + chromium_binary: PathBuf, + chromium_profile: PathBuf, + xdotool_binary: PathBuf, + display: String, + recording_root: PathBuf, + authenticated: bool, + disable_sandbox: bool, +} + +impl WorkerConfig { + fn from_env() -> anyhow::Result { + let recording_root = required_path("ANARLOG_ENTERPRISE_RECORDING_ROOT")?; + Ok(Self { + control_plane_url: required_env("ANARLOG_ENTERPRISE_CONTROL_PLANE_URL")?.parse()?, + workspace_id: required_env("ANARLOG_ENTERPRISE_WORKSPACE_ID")?, + job_id: env::var("ANARLOG_ENTERPRISE_CAPTURE_JOB_ID") + .ok() + .map(|value| value.trim().to_string()) + .filter(|value| !value.is_empty()), + workspace_token: required_env("ANARLOG_ENTERPRISE_WORKSPACE_TOKEN")?, + worker_id: env::var("ANARLOG_ENTERPRISE_WORKER_ID") + .unwrap_or_else(|_| format!("google-meet-{}", hostname())), + bot_name: env::var("ANARLOG_ENTERPRISE_BOT_NAME") + .unwrap_or_else(|_| "Anarlog Notetaker".into()), + chromium_binary: env_path("ANARLOG_ENTERPRISE_CHROMIUM_BINARY", "/usr/bin/chromium"), + chromium_profile: env::var_os("ANARLOG_ENTERPRISE_CHROMIUM_PROFILE") + .map(PathBuf::from) + .unwrap_or_else(|| recording_root.join("chromium-profile")), + xdotool_binary: env_path("ANARLOG_ENTERPRISE_XDOTOOL_BINARY", "/usr/bin/xdotool"), + display: env::var("DISPLAY").unwrap_or_else(|_| ":99".into()), + recording_root, + authenticated: env::var("ANARLOG_ENTERPRISE_AUTHENTICATED") + .ok() + .is_some_and(|value| value == "1" || value.eq_ignore_ascii_case("true")), + disable_sandbox: env::var("ANARLOG_ENTERPRISE_DISABLE_SANDBOX") + .ok() + .map(|value| value == "1" || value.eq_ignore_ascii_case("true")) + .unwrap_or(true), + }) + } +} + +fn required_env(name: &str) -> anyhow::Result { + env::var(name).map_err(|_| anyhow::anyhow!("missing required configuration: {name}")) +} + +fn required_path(name: &str) -> anyhow::Result { + Ok(PathBuf::from(required_env(name)?)) +} + +fn env_path(name: &str, default: &str) -> PathBuf { + env::var_os(name) + .map(PathBuf::from) + .unwrap_or_else(|| PathBuf::from(default)) +} + +fn hostname() -> String { + env::var("HOSTNAME").unwrap_or_else(|_| "worker".into()) +} + +async fn shutdown_signal() { + let interrupt = async { + let _ = tokio::signal::ctrl_c().await; + }; + #[cfg(unix)] + let terminate = async { + if let Ok(mut signal) = + tokio::signal::unix::signal(tokio::signal::unix::SignalKind::terminate()) + { + signal.recv().await; + } + }; + #[cfg(not(unix))] + let terminate = std::future::pending::<()>(); + tokio::select! { + () = interrupt => {} + () = terminate => {} + } +} diff --git a/enterprise/google-meet-worker/src/lifecycle.rs b/enterprise/google-meet-worker/src/lifecycle.rs index f1294cd199..af5421ac50 100644 --- a/enterprise/google-meet-worker/src/lifecycle.rs +++ b/enterprise/google-meet-worker/src/lifecycle.rs @@ -1,4 +1,4 @@ -use std::time::Instant; +use std::time::{Duration, Instant}; use anlg_meeting_capture::{ BotState, CaptureEvent, CaptureEventPayload, LifecycleTransition, ProviderMetadata, @@ -11,6 +11,9 @@ use crate::{ RuntimeClassifier, RuntimeOutcome, RuntimeSnapshot, }; +pub const DEFAULT_NOBODY_JOINED_GRACE: Duration = Duration::from_secs(10 * 60); +pub const DEFAULT_EVERYONE_LEFT_GRACE: Duration = Duration::from_secs(2 * 60); + #[derive(Debug)] pub struct WorkerLifecycle { bot_id: String, @@ -18,16 +21,36 @@ pub struct WorkerLifecycle { next_sequence: u64, admission: AdmissionClassifier, runtime: RuntimeClassifier, + nobody_joined_grace: Duration, + everyone_left_grace: Duration, + saw_other_participants: bool, + empty_since: Option, } impl WorkerLifecycle { pub fn new(bot_id: impl Into) -> Self { + Self::with_empty_meeting_grace( + bot_id, + DEFAULT_NOBODY_JOINED_GRACE, + DEFAULT_EVERYONE_LEFT_GRACE, + ) + } + + pub fn with_empty_meeting_grace( + bot_id: impl Into, + nobody_joined_grace: Duration, + everyone_left_grace: Duration, + ) -> Self { Self { bot_id: bot_id.into(), state: BotState::Queued, next_sequence: 0, admission: AdmissionClassifier::default(), runtime: RuntimeClassifier::default(), + nobody_joined_grace, + everyone_left_grace, + saw_other_participants: false, + empty_since: None, } } @@ -52,6 +75,10 @@ impl WorkerLifecycle { next_sequence, admission: AdmissionClassifier::default(), runtime: RuntimeClassifier::default(), + nobody_joined_grace: DEFAULT_NOBODY_JOINED_GRACE, + everyone_left_grace: DEFAULT_EVERYONE_LEFT_GRACE, + saw_other_participants: false, + empty_since: None, }) } @@ -153,18 +180,108 @@ impl WorkerLifecycle { ) } + pub fn nobody_joined( + &mut self, + occurred_at: DateTime, + ) -> Result { + self.transition( + BotState::Failed, + Some(TerminalReason { + kind: TerminalReasonKind::NoOneJoined, + message: Some( + "no other participants joined the Google Meet before the deadline".into(), + ), + retryable: true, + }), + occurred_at, + ) + } + + pub fn everyone_left( + &mut self, + occurred_at: DateTime, + ) -> Result { + self.transition( + BotState::Completed, + Some(TerminalReason { + kind: TerminalReasonKind::EveryoneLeft, + message: Some("all other Google Meet participants left".into()), + retryable: false, + }), + occurred_at, + ) + } + + pub fn stt_unavailable( + &mut self, + message: impl Into, + occurred_at: DateTime, + ) -> Result { + self.transition( + BotState::Failed, + Some(TerminalReason { + kind: TerminalReasonKind::ProviderError, + message: Some(message.into()), + retryable: true, + }), + occurred_at, + ) + } + pub fn observe_runtime( &mut self, snapshot: &RuntimeSnapshot, observed_at: Instant, occurred_at: DateTime, ) -> Result, TransitionError> { + if let Some(event) = self.observe_empty_meeting(snapshot, observed_at, occurred_at)? { + return Ok(Some(event)); + } let Some(outcome) = self.classify_runtime(snapshot, observed_at) else { return Ok(None); }; self.apply_runtime_outcome(outcome, occurred_at).map(Some) } + fn observe_empty_meeting( + &mut self, + snapshot: &RuntimeSnapshot, + observed_at: Instant, + occurred_at: DateTime, + ) -> Result, TransitionError> { + if !matches!(self.state, BotState::Joined | BotState::Capturing) { + return Ok(None); + } + if snapshot.removal_indicator.is_some() + || snapshot.meeting_ended_indicator.is_some() + || snapshot.connection_problem_indicator.is_some() + { + self.empty_since = None; + return Ok(None); + } + if other_participant_count(snapshot) > 0 { + self.saw_other_participants = true; + self.empty_since = None; + return Ok(None); + } + let since = *self.empty_since.get_or_insert(observed_at); + let elapsed = observed_at.saturating_duration_since(since); + let grace = if self.saw_other_participants { + self.everyone_left_grace + } else { + self.nobody_joined_grace + }; + if elapsed < grace { + return Ok(None); + } + self.empty_since = None; + if self.saw_other_participants { + self.everyone_left(occurred_at).map(Some) + } else { + self.nobody_joined(occurred_at).map(Some) + } + } + pub(crate) fn classify_runtime( &mut self, snapshot: &RuntimeSnapshot, @@ -291,6 +408,19 @@ impl WorkerLifecycle { } } +fn other_participant_count(snapshot: &RuntimeSnapshot) -> usize { + snapshot + .participant_tile_labels + .iter() + .filter(|label| { + let label = label.trim().to_lowercase(); + !label.is_empty() + && !label.contains("visual_effects") + && !label.contains("backgrounds and effects") + }) + .count() +} + #[derive(Debug, thiserror::Error, PartialEq, Eq)] #[error("capture checkpoint state {state:?} is inconsistent with next sequence {next_sequence}")] pub struct WorkerLifecycleResumeError { @@ -543,4 +673,148 @@ mod tests { assert_eq!(events.len(), 2); assert_eq!(lifecycle.state(), BotState::Completed); } + + #[test] + fn nobody_joined_timeout_is_distinct_from_admission_timeout() { + let started = Instant::now(); + let mut lifecycle = WorkerLifecycle::with_empty_meeting_grace( + "bot-1", + Duration::from_secs(1), + Duration::from_secs(1), + ); + lifecycle.launch_started(now()).unwrap(); + lifecycle + .observe_admission( + &AdmissionSnapshot { + self_name_nodes: 1, + ..Default::default() + }, + started, + now(), + ) + .unwrap(); + lifecycle.capture_started(now()).unwrap(); + + assert!( + lifecycle + .observe_runtime( + &RuntimeSnapshot { + self_name_nodes: 1, + visible_meeting_controls: 1, + ..Default::default() + }, + started, + now(), + ) + .unwrap() + .is_none() + ); + + let event = lifecycle + .observe_runtime( + &RuntimeSnapshot { + self_name_nodes: 1, + visible_meeting_controls: 1, + ..Default::default() + }, + started + Duration::from_secs(1), + now(), + ) + .unwrap() + .unwrap(); + let CaptureEventPayload::Lifecycle(transition) = event.payload else { + panic!("expected lifecycle event") + }; + assert_eq!( + transition.reason.unwrap().kind, + TerminalReasonKind::NoOneJoined + ); + assert_eq!(lifecycle.state(), BotState::Failed); + } + + #[test] + fn everyone_left_after_other_participants_were_seen() { + let started = Instant::now(); + let mut lifecycle = WorkerLifecycle::with_empty_meeting_grace( + "bot-1", + Duration::from_secs(30), + Duration::from_secs(1), + ); + lifecycle.launch_started(now()).unwrap(); + lifecycle + .observe_admission( + &AdmissionSnapshot { + participant_tile_labels: vec!["Ada Lovelace".into()], + ..Default::default() + }, + started, + now(), + ) + .unwrap(); + lifecycle.capture_started(now()).unwrap(); + lifecycle + .observe_runtime( + &RuntimeSnapshot { + participant_tile_labels: vec!["Ada Lovelace".into()], + self_name_nodes: 1, + visible_meeting_controls: 1, + ..Default::default() + }, + started, + now(), + ) + .unwrap(); + let empty = RuntimeSnapshot { + self_name_nodes: 1, + visible_meeting_controls: 1, + ..Default::default() + }; + assert!( + lifecycle + .observe_runtime(&empty, started, now()) + .unwrap() + .is_none() + ); + + let event = lifecycle + .observe_runtime(&empty, started + Duration::from_secs(1), now()) + .unwrap() + .unwrap(); + let CaptureEventPayload::Lifecycle(transition) = event.payload else { + panic!("expected lifecycle event") + }; + assert_eq!( + transition.reason.unwrap().kind, + TerminalReasonKind::EveryoneLeft + ); + assert_eq!(lifecycle.state(), BotState::Completed); + } + + #[test] + fn stt_outage_is_retryable_provider_error() { + let mut lifecycle = WorkerLifecycle::new("bot-1"); + lifecycle.launch_started(now()).unwrap(); + lifecycle + .observe_admission( + &AdmissionSnapshot { + self_name_nodes: 1, + ..Default::default() + }, + Instant::now(), + now(), + ) + .unwrap(); + lifecycle.capture_started(now()).unwrap(); + + let event = lifecycle + .stt_unavailable("speech-to-text endpoint returned 503", now()) + .unwrap(); + let CaptureEventPayload::Lifecycle(transition) = event.payload else { + panic!("expected lifecycle event") + }; + let reason = transition.reason.unwrap(); + assert_eq!(reason.kind, TerminalReasonKind::ProviderError); + assert!(reason.retryable); + assert_eq!(lifecycle.state(), BotState::Failed); + } } diff --git a/enterprise/google-meet-worker/tests/fixture_replay.rs b/enterprise/google-meet-worker/tests/fixture_replay.rs new file mode 100644 index 0000000000..6faf44e974 --- /dev/null +++ b/enterprise/google-meet-worker/tests/fixture_replay.rs @@ -0,0 +1,254 @@ +use std::{ + fs, + path::PathBuf, + time::{Duration, Instant}, +}; + +use anarlog_enterprise_google_meet_worker::{ + AdmissionClassifier, AdmissionOutcome, AdmissionRejectionReason, AdmissionSnapshot, + RuntimeClassifier, RuntimeOutcome, RuntimeSnapshot, WorkerLifecycle, +}; +use anlg_meeting_capture::{BotState, CaptureEventPayload, TerminalReasonKind}; +use chrono::{DateTime, Utc}; +use serde::Deserialize; + +fn fixture_root() -> PathBuf { + PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("fixtures/vexa-v0.12.18") +} + +fn load_json Deserialize<'de>>(relative: &str) -> T { + let path = fixture_root().join(relative); + serde_json::from_str( + &fs::read_to_string(&path) + .unwrap_or_else(|error| panic!("failed to read {}: {error}", path.display())), + ) + .unwrap_or_else(|error| panic!("failed to parse {}: {error}", path.display())) +} + +#[derive(Debug, Deserialize)] +struct ClassifierFixture { + kind: String, + elapsed_ms: u64, + snapshot: serde_json::Value, + expected: ExpectedOutcome, +} + +#[derive(Debug, Deserialize)] +struct ExpectedOutcome { + outcome: String, + #[serde(default)] + reason: Option, + #[serde(default)] + indicator: Option, +} + +#[derive(Debug, Deserialize)] +struct Scenario { + id: String, + expected_state: String, + expected_terminal: String, + retryable: bool, + steps: Vec, +} + +#[derive(Debug, Deserialize)] +struct ScenarioStep { + action: String, + #[serde(default)] + fixture: Option, + #[serde(default)] + message: Option, +} + +fn now() -> DateTime { + DateTime::parse_from_rfc3339("2026-08-17T00:00:00Z") + .unwrap() + .with_timezone(&Utc) +} + +#[test] +fn replays_every_vexa_classifier_fixture() { + let mut cases = Vec::new(); + for kind in ["admission", "runtime"] { + let dir = fixture_root().join(kind); + for entry in fs::read_dir(&dir).unwrap() { + let path = entry.unwrap().path(); + if path.extension().and_then(|ext| ext.to_str()) == Some("json") { + cases.push((kind, path)); + } + } + } + cases.sort_by(|left, right| left.1.file_name().cmp(&right.1.file_name())); + assert!( + cases.len() >= 12, + "expected the committed Vexa behavior matrix fixtures" + ); + + for (kind, path) in cases { + let relative = format!("{kind}/{}", path.file_name().unwrap().to_string_lossy()); + let fixture: ClassifierFixture = load_json(&relative); + let started = Instant::now(); + match fixture.kind.as_str() { + "admission" => { + let snapshot: AdmissionSnapshot = + serde_json::from_value(fixture.snapshot.clone()).unwrap(); + let mut classifier = AdmissionClassifier::default(); + classifier.classify(&snapshot, started); + let outcome = classifier.classify( + &snapshot, + started + Duration::from_millis(fixture.elapsed_ms), + ); + assert_admission(&relative, &outcome, &fixture.expected); + } + "runtime" => { + let snapshot: RuntimeSnapshot = + serde_json::from_value(fixture.snapshot.clone()).unwrap(); + let mut classifier = RuntimeClassifier::default(); + classifier.classify(&snapshot, started); + let outcome = classifier.classify( + &snapshot, + started + Duration::from_millis(fixture.elapsed_ms), + ); + assert_runtime(&relative, &outcome, &fixture.expected); + } + other => panic!("{relative}: unknown fixture kind {other}"), + } + } +} + +fn assert_admission(id: &str, outcome: &AdmissionOutcome, expected: &ExpectedOutcome) { + match expected.outcome.as_str() { + "admitted" => assert_eq!(outcome, &AdmissionOutcome::Admitted, "{id}"), + "waiting" => assert_eq!(outcome, &AdmissionOutcome::WaitingForAdmission, "{id}"), + "consent" => assert_eq!(outcome, &AdmissionOutcome::ConsentRequired, "{id}"), + "rejected" => match outcome { + AdmissionOutcome::Rejected(rejection) => { + let reason = match expected.reason.as_deref() { + Some("host_denied") => AdmissionRejectionReason::HostDenied, + Some("captcha_unsolved") => AdmissionRejectionReason::CaptchaUnsolved, + Some("error_page") => AdmissionRejectionReason::ErrorPage, + other => panic!("{id}: unknown rejection {other:?}"), + }; + assert_eq!(rejection.reason, reason, "{id}"); + if let Some(indicator) = &expected.indicator { + assert_eq!(&rejection.indicator, indicator, "{id}"); + } + } + other => panic!("{id}: expected rejection, got {other:?}"), + }, + other => panic!("{id}: unknown expected outcome {other}"), + } +} + +fn assert_runtime(id: &str, outcome: &RuntimeOutcome, expected: &ExpectedOutcome) { + match expected.outcome.as_str() { + "active" => assert_eq!(outcome, &RuntimeOutcome::Active, "{id}"), + "removed" => match outcome { + RuntimeOutcome::Removed(indicator) => { + assert_eq!(indicator, expected.indicator.as_ref().unwrap(), "{id}"); + } + other => panic!("{id}: expected removed, got {other:?}"), + }, + "meeting_ended" => match outcome { + RuntimeOutcome::MeetingEnded(indicator) => { + assert_eq!(indicator, expected.indicator.as_ref().unwrap(), "{id}"); + } + other => panic!("{id}: expected meeting ended, got {other:?}"), + }, + "network_lost" => match outcome { + RuntimeOutcome::NetworkLost(indicator) => { + assert_eq!(indicator, expected.indicator.as_ref().unwrap(), "{id}"); + } + other => panic!("{id}: expected network lost, got {other:?}"), + }, + other => panic!("{id}: unknown expected runtime outcome {other}"), + } +} + +#[test] +fn replays_lifecycle_scenarios_to_provider_neutral_terminal_reasons() { + let scenarios: Vec = load_json("scenarios.json"); + assert!(!scenarios.is_empty()); + + for scenario in scenarios { + let mut lifecycle = WorkerLifecycle::new(&scenario.id); + let started = Instant::now(); + let mut last_terminal = None; + for step in &scenario.steps { + let event = match step.action.as_str() { + "launch" => Some(lifecycle.launch_started(now()).unwrap()), + "admission" => { + let fixture: ClassifierFixture = + load_json(step.fixture.as_ref().expect("admission fixture")); + let snapshot: AdmissionSnapshot = + serde_json::from_value(fixture.snapshot).unwrap(); + lifecycle + .observe_admission(&snapshot, started, now()) + .unwrap() + } + "capture_started" => Some(lifecycle.capture_started(now()).unwrap()), + "runtime" => { + let fixture: ClassifierFixture = + load_json(step.fixture.as_ref().expect("runtime fixture")); + let snapshot: RuntimeSnapshot = + serde_json::from_value(fixture.snapshot).unwrap(); + let observed_at = started + Duration::from_millis(fixture.elapsed_ms); + if fixture.elapsed_ms > 0 { + let _ = lifecycle + .observe_runtime(&snapshot, started, now()) + .unwrap(); + } + lifecycle + .observe_runtime(&snapshot, observed_at, now()) + .unwrap() + } + "admission_timeout" => Some(lifecycle.admission_timed_out(now()).unwrap()), + "worker_exited" => Some( + lifecycle + .worker_exited( + step.message.clone().unwrap_or_else(|| "crash".into()), + now(), + ) + .unwrap(), + ), + "stt_unavailable" => Some( + lifecycle + .stt_unavailable( + step.message + .clone() + .unwrap_or_else(|| "speech-to-text unavailable".into()), + now(), + ) + .unwrap(), + ), + other => panic!("{}: unknown action {other}", scenario.id), + }; + if let Some(event) = event { + if let CaptureEventPayload::Lifecycle(transition) = event.payload { + last_terminal = transition.reason; + } + } + } + + let expected_state = match scenario.expected_state.as_str() { + "failed" => BotState::Failed, + "completed" => BotState::Completed, + "canceled" => BotState::Canceled, + other => panic!("{}: unknown state {other}", scenario.id), + }; + assert_eq!(lifecycle.state(), expected_state, "{}", scenario.id); + let reason = last_terminal.expect(&scenario.id); + let expected_kind = serde_json::from_value(serde_json::Value::String( + scenario.expected_terminal.clone(), + )) + .unwrap_or_else(|error| { + panic!( + "{}: invalid terminal {}: {error}", + scenario.id, scenario.expected_terminal + ) + }); + let expected_kind: TerminalReasonKind = expected_kind; + assert_eq!(reason.kind, expected_kind, "{}", scenario.id); + assert_eq!(reason.retryable, scenario.retryable, "{}", scenario.id); + } +} diff --git a/enterprise/google-meet-worker/tests/live_google_meet.rs b/enterprise/google-meet-worker/tests/live_google_meet.rs index a520be399b..c1518195b9 100644 --- a/enterprise/google-meet-worker/tests/live_google_meet.rs +++ b/enterprise/google-meet-worker/tests/live_google_meet.rs @@ -11,12 +11,62 @@ use anarlog_enterprise_google_meet_worker::{ ChunkedRecordingSink, FilesystemRecordingStore, GoogleMeetRuntime, GoogleMeetRuntimeConfig, GoogleMeetUrl, WorkerCheckpoint, WorkerLifecycle, X11InputConfig, }; -use anlg_meeting_capture::{BotState, CaptureEventPayload}; +use anlg_meeting_capture::{BotState, CaptureEvent, CaptureEventPayload, TerminalReasonKind}; use tokio::sync::mpsc; #[tokio::test] #[ignore = "requires a disposable live Google Meet and a Linux desktop runtime"] async fn captures_a_live_google_meet_and_cleans_up() -> Result<(), Box> { + let run = run_live_google_meet().await?; + assert!(run.lifecycle.state().is_terminal()); + assert!(run.events.iter().any(|event| { + matches!( + &event.payload, + CaptureEventPayload::Lifecycle(transition) if transition.to == BotState::Joined + ) + })); + assert!(run.events.iter().any(|event| { + matches!( + &event.payload, + CaptureEventPayload::Lifecycle(transition) if transition.to == BotState::Capturing + ) + })); + assert!( + run.events + .iter() + .any(|event| { matches!(event.payload, CaptureEventPayload::RecordingChunkReady(_)) }) + ); + assert!(run.recording_root.join("live-google-meet").is_dir()); + Ok(()) +} + +#[tokio::test] +#[ignore = "requires a disposable live Google Meet and a Linux desktop runtime"] +async fn live_google_meet_emits_actionable_terminal_reason_and_cleans_up() +-> Result<(), Box> { + let run = run_live_google_meet().await?; + assert!( + run.lifecycle.state().is_terminal(), + "live Meet must finish in a terminal bot state, got {:?}", + run.lifecycle.state() + ); + let reason = run.events.iter().find_map(|event| match &event.payload { + CaptureEventPayload::Lifecycle(transition) => transition.reason.clone(), + _ => None, + }); + let reason = reason.expect("live Meet must emit a terminal reason"); + assert_ne!(reason.kind, TerminalReasonKind::Unknown); + println!("ANLG_LIVE_TERMINAL_REASON {reason:?}"); + Ok(()) +} + +struct LiveRun { + events: Vec, + lifecycle: WorkerLifecycle, + recording_root: PathBuf, +} + +async fn run_live_google_meet() -> Result> { let meeting_url = GoogleMeetUrl::parse(&env::var("ANLG_LIVE_GOOGLE_MEET_URL")?)?; let run_timeout = Duration::from_secs(env_u64("ANLG_LIVE_RUN_SECONDS", 300)?); let directory = tempfile::tempdir()?; @@ -54,7 +104,7 @@ async fn captures_a_live_google_meet_and_cleans_up() -> Result<(), Box Result<(), Box Result> { diff --git a/enterprise/google-meet-worker/tests/reliability_gate.rs b/enterprise/google-meet-worker/tests/reliability_gate.rs new file mode 100644 index 0000000000..43ab04c30b --- /dev/null +++ b/enterprise/google-meet-worker/tests/reliability_gate.rs @@ -0,0 +1,319 @@ +use std::time::{Duration, Instant}; + +use anarlog_enterprise_google_meet_worker::{AdmissionSnapshot, RuntimeSnapshot, WorkerLifecycle}; +use anlg_meeting_capture::{BotState, CaptureEventPayload, TerminalReasonKind}; +use chrono::{DateTime, Utc}; + +fn now() -> DateTime { + DateTime::parse_from_rfc3339("2026-08-17T00:00:00Z") + .unwrap() + .with_timezone(&Utc) +} + +fn join_and_capture(lifecycle: &mut WorkerLifecycle) { + lifecycle.launch_started(now()).unwrap(); + lifecycle + .observe_admission( + &AdmissionSnapshot { + participant_tile_labels: vec!["Ada Lovelace".into()], + self_name_nodes: 1, + ..Default::default() + }, + Instant::now(), + now(), + ) + .unwrap(); + lifecycle.capture_started(now()).unwrap(); +} + +fn assert_terminal(lifecycle: &WorkerLifecycle) { + assert!( + lifecycle.state().is_terminal(), + "expected terminal state, got {:?}", + lifecycle.state() + ); +} + +#[test] +fn reliability_gate_covers_required_terminal_reasons() { + let started = Instant::now(); + let cases: [( + &str, + Box TerminalReasonKind>, + ); 9] = [ + ( + "admitted-kicked", + Box::new(|lifecycle| { + join_and_capture(lifecycle); + let event = lifecycle + .observe_runtime( + &RuntimeSnapshot { + removal_indicator: Some("you were removed".into()), + ..Default::default() + }, + Instant::now(), + now(), + ) + .unwrap() + .unwrap(); + reason_kind(event) + }), + ), + ( + "host-ended", + Box::new(|lifecycle| { + join_and_capture(lifecycle); + let event = lifecycle + .observe_runtime( + &RuntimeSnapshot { + meeting_ended_indicator: Some("the meeting has ended".into()), + ..Default::default() + }, + Instant::now(), + now(), + ) + .unwrap() + .unwrap(); + reason_kind(event) + }), + ), + ( + "denied", + Box::new(|lifecycle| { + lifecycle.launch_started(now()).unwrap(); + let event = lifecycle + .observe_admission( + &AdmissionSnapshot { + explicit_denial_indicator: Some("denied your request".into()), + ..Default::default() + }, + Instant::now(), + now(), + ) + .unwrap() + .unwrap(); + reason_kind(event) + }), + ), + ( + "lobby-timeout", + Box::new(|lifecycle| { + lifecycle.launch_started(now()).unwrap(); + reason_kind(lifecycle.admission_timed_out(now()).unwrap()) + }), + ), + ( + "worker-crash", + Box::new(|lifecycle| { + join_and_capture(lifecycle); + reason_kind(lifecycle.worker_exited("worker crashed", now()).unwrap()) + }), + ), + ( + "stt-outage", + Box::new(|lifecycle| { + join_and_capture(lifecycle); + reason_kind( + lifecycle + .stt_unavailable("speech-to-text endpoint returned 503", now()) + .unwrap(), + ) + }), + ), + ( + "network-lost", + Box::new(|lifecycle| { + join_and_capture(lifecycle); + let snapshot = RuntimeSnapshot { + connection_problem_indicator: Some("reconnecting".into()), + ..Default::default() + }; + assert!( + lifecycle + .observe_runtime(&snapshot, started, now()) + .unwrap() + .is_none() + ); + reason_kind( + lifecycle + .observe_runtime(&snapshot, started + Duration::from_secs(30), now()) + .unwrap() + .unwrap(), + ) + }), + ), + ( + "nobody-joined", + Box::new(|lifecycle| { + let started = Instant::now(); + let mut local = WorkerLifecycle::with_empty_meeting_grace( + "bot-empty", + Duration::from_secs(1), + Duration::from_secs(30), + ); + local.launch_started(now()).unwrap(); + local + .observe_admission( + &AdmissionSnapshot { + self_name_nodes: 1, + ..Default::default() + }, + started, + now(), + ) + .unwrap(); + local.capture_started(now()).unwrap(); + let snapshot = RuntimeSnapshot { + self_name_nodes: 1, + visible_meeting_controls: 1, + ..Default::default() + }; + assert!( + local + .observe_runtime(&snapshot, started, now()) + .unwrap() + .is_none() + ); + let kind = reason_kind( + local + .observe_runtime(&snapshot, started + Duration::from_secs(1), now()) + .unwrap() + .unwrap(), + ); + *lifecycle = local; + kind + }), + ), + ( + "everyone-left", + Box::new(|lifecycle| { + let started = Instant::now(); + let mut local = WorkerLifecycle::with_empty_meeting_grace( + "bot-empty-after", + Duration::from_secs(30), + Duration::from_secs(1), + ); + join_and_capture(&mut local); + local + .observe_runtime( + &RuntimeSnapshot { + participant_tile_labels: vec!["Ada Lovelace".into()], + self_name_nodes: 1, + visible_meeting_controls: 2, + ..Default::default() + }, + started, + now(), + ) + .unwrap(); + let empty = RuntimeSnapshot { + self_name_nodes: 1, + visible_meeting_controls: 1, + ..Default::default() + }; + assert!( + local + .observe_runtime(&empty, started, now()) + .unwrap() + .is_none() + ); + let kind = reason_kind( + local + .observe_runtime(&empty, started + Duration::from_secs(1), now()) + .unwrap() + .unwrap(), + ); + *lifecycle = local; + kind + }), + ), + ]; + + let expected = [ + TerminalReasonKind::RemovedFromMeeting, + TerminalReasonKind::MeetingEnded, + TerminalReasonKind::AdmissionDenied, + TerminalReasonKind::AdmissionTimeout, + TerminalReasonKind::WorkerExited, + TerminalReasonKind::ProviderError, + TerminalReasonKind::NetworkLost, + TerminalReasonKind::NoOneJoined, + TerminalReasonKind::EveryoneLeft, + ]; + + for ((name, run), expected) in cases.into_iter().zip(expected) { + let mut lifecycle = WorkerLifecycle::new(name); + let kind = run(&mut lifecycle); + assert_eq!(kind, expected, "{name}"); + assert!(lifecycle.state().is_terminal(), "{name}"); + } +} + +fn reason_kind(event: anlg_meeting_capture::CaptureEvent) -> TerminalReasonKind { + let CaptureEventPayload::Lifecycle(transition) = event.payload else { + panic!("expected lifecycle event"); + }; + transition.reason.unwrap().kind +} + +#[test] +fn concurrent_lifecycles_do_not_share_sequence_or_orphan_state() { + let mut first = WorkerLifecycle::new("bot-a"); + let mut second = WorkerLifecycle::new("bot-b"); + join_and_capture(&mut first); + join_and_capture(&mut second); + + first.worker_exited("first crashed", now()).unwrap(); + second + .observe_runtime( + &RuntimeSnapshot { + meeting_ended_indicator: Some("meeting ended".into()), + ..Default::default() + }, + Instant::now(), + now(), + ) + .unwrap(); + + assert_eq!(first.state(), BotState::Failed); + assert_eq!(second.state(), BotState::Completed); + assert_terminal(&first); + assert_terminal(&second); +} + +#[test] +fn overlapping_and_unresolved_speakers_stay_non_terminal() { + let mut lifecycle = WorkerLifecycle::new("bot-speakers"); + join_and_capture(&mut lifecycle); + assert!( + lifecycle + .observe_runtime( + &RuntimeSnapshot { + participant_tile_labels: vec!["Ada Lovelace".into(), "Grace Hopper".into()], + self_name_nodes: 1, + visible_meeting_controls: 2, + ..Default::default() + }, + Instant::now(), + now(), + ) + .unwrap() + .is_none() + ); + assert!( + lifecycle + .observe_runtime( + &RuntimeSnapshot { + participant_tile_labels: vec!["Ada L.".into()], + self_name_nodes: 1, + visible_meeting_controls: 2, + ..Default::default() + }, + Instant::now(), + now(), + ) + .unwrap() + .is_none() + ); + assert_eq!(lifecycle.state(), BotState::Capturing); +} diff --git a/enterprise/meeting-sdk-bridge-worker/tests/teams_reliability.rs b/enterprise/meeting-sdk-bridge-worker/tests/teams_reliability.rs new file mode 100644 index 0000000000..1a33d800fc --- /dev/null +++ b/enterprise/meeting-sdk-bridge-worker/tests/teams_reliability.rs @@ -0,0 +1,135 @@ +use anlg_meeting_capture::{ + BotState, CaptureEventPayload, CaptureProviderKind, CaptureWorkerCheckpoint, + MEETING_SDK_BRIDGE_PROTOCOL_VERSION, MeetingPlatform, MeetingReference, MeetingSdkBridgeEvent, + MeetingSdkBridgeEventPayload, MeetingSdkBridgeNormalizer, MeetingSdkBridgeTerminal, + MeetingSdkBridgeTranscript, TerminalReason, TerminalReasonKind, +}; +use chrono::{DateTime, Utc}; + +fn now() -> DateTime { + DateTime::parse_from_rfc3339("2026-08-21T00:00:00Z") + .unwrap() + .with_timezone(&Utc) +} + +fn checkpoint() -> CaptureWorkerCheckpoint { + CaptureWorkerCheckpoint { + job_id: "job-teams".into(), + bot_id: "bot-teams".into(), + provider: CaptureProviderKind::MicrosoftGraph, + meeting: MeetingReference { + platform: MeetingPlatform::MicrosoftTeams, + url: "https://teams.microsoft.com/l/meetup-join/reliability".into(), + external_id: Some("meeting-1".into()), + calendar_event_id: None, + }, + state: BotState::Queued, + next_sequence: 0, + } +} + +fn event(sequence: u64, payload: MeetingSdkBridgeEventPayload) -> MeetingSdkBridgeEvent { + MeetingSdkBridgeEvent { + protocol_version: MEETING_SDK_BRIDGE_PROTOCOL_VERSION, + sequence, + platform: MeetingPlatform::MicrosoftTeams, + provider: CaptureProviderKind::MicrosoftGraph, + payload, + } +} + +#[test] +fn teams_reliability_matrix_covers_lobby_policy_and_meeting_end() { + let cases: [(&str, Vec, TerminalReasonKind); 4] = [ + ( + "lobby-timeout", + vec![ + MeetingSdkBridgeEventPayload::Ready, + MeetingSdkBridgeEventPayload::WaitingForAdmission, + MeetingSdkBridgeEventPayload::Terminal(MeetingSdkBridgeTerminal { + state: BotState::Failed, + reason: TerminalReason { + kind: TerminalReasonKind::AdmissionTimeout, + message: Some("organizer did not admit the media bot".into()), + retryable: true, + }, + }), + ], + TerminalReasonKind::AdmissionTimeout, + ), + ( + "organizer-denied", + vec![ + MeetingSdkBridgeEventPayload::Ready, + MeetingSdkBridgeEventPayload::WaitingForAdmission, + MeetingSdkBridgeEventPayload::Terminal(MeetingSdkBridgeTerminal { + state: BotState::Failed, + reason: TerminalReason { + kind: TerminalReasonKind::AdmissionDenied, + message: Some("organizer policy denied the media bot".into()), + retryable: false, + }, + }), + ], + TerminalReasonKind::AdmissionDenied, + ), + ( + "removed-by-organizer", + vec![ + MeetingSdkBridgeEventPayload::Ready, + MeetingSdkBridgeEventPayload::Joined, + MeetingSdkBridgeEventPayload::Capturing, + MeetingSdkBridgeEventPayload::Terminal(MeetingSdkBridgeTerminal { + state: BotState::Failed, + reason: TerminalReason { + kind: TerminalReasonKind::RemovedFromMeeting, + message: Some("organizer removed the media bot".into()), + retryable: false, + }, + }), + ], + TerminalReasonKind::RemovedFromMeeting, + ), + ( + "meeting-ended", + vec![ + MeetingSdkBridgeEventPayload::Ready, + MeetingSdkBridgeEventPayload::Joined, + MeetingSdkBridgeEventPayload::Capturing, + MeetingSdkBridgeEventPayload::Transcript(MeetingSdkBridgeTranscript { + start_ms: 0, + end_ms: Some(1_200), + text: "Action items are in the notes".into(), + speaker: None, + is_final: true, + }), + MeetingSdkBridgeEventPayload::Terminal(MeetingSdkBridgeTerminal { + state: BotState::Completed, + reason: TerminalReason { + kind: TerminalReasonKind::MeetingEnded, + message: Some("Teams meeting ended".into()), + retryable: false, + }, + }), + ], + TerminalReasonKind::MeetingEnded, + ), + ]; + + for (name, payloads, expected) in cases { + let mut normalizer = MeetingSdkBridgeNormalizer::new(&checkpoint()).unwrap(); + let mut last_kind = None; + for (sequence, payload) in payloads.into_iter().enumerate() { + let accepted = normalizer + .accept(event(sequence as u64, payload), now()) + .unwrap_or_else(|error| panic!("{name}: {error}")); + if let CaptureEventPayload::Lifecycle(transition) = &accepted.payload { + if let Some(reason) = &transition.reason { + last_kind = Some(reason.kind); + } + } + } + assert_eq!(last_kind, Some(expected), "{name}"); + assert!(normalizer.state().is_terminal(), "{name}"); + } +} diff --git a/enterprise/zoom-rtms-worker/Cargo.toml b/enterprise/zoom-rtms-worker/Cargo.toml index d8de039230..b910d29ec2 100644 --- a/enterprise/zoom-rtms-worker/Cargo.toml +++ b/enterprise/zoom-rtms-worker/Cargo.toml @@ -7,12 +7,19 @@ license-file.workspace = true [dependencies] anlg-meeting-capture.workspace = true +anyhow.workspace = true futures-util.workspace = true hmac.workspace = true serde = { workspace = true, features = ["derive"] } serde_json.workspace = true sha2 = "0.10" thiserror.workspace = true -tokio = { workspace = true, features = ["macros", "net", "rt", "sync", "time"] } +tokio = { workspace = true, features = ["macros", "net", "rt", "rt-multi-thread", "signal", "sync", "time"] } tokio-tungstenite = { workspace = true, features = ["rustls-tls-webpki-roots"] } +tracing.workspace = true +tracing-subscriber = { workspace = true, features = ["env-filter", "fmt"] } url = { workspace = true, features = ["serde"] } + +[[bin]] +name = "anarlog-enterprise-zoom-rtms-worker" +path = "src/bin/worker.rs" diff --git a/enterprise/zoom-rtms-worker/Dockerfile b/enterprise/zoom-rtms-worker/Dockerfile new file mode 100644 index 0000000000..91e3959e2c --- /dev/null +++ b/enterprise/zoom-rtms-worker/Dockerfile @@ -0,0 +1,33 @@ +ARG RUST_IMAGE=rust:1.94.0-bookworm@sha256:365468470075493dc4583f47387001854321c5a8583ea9604b297e67f01c5a4f +ARG RUNTIME_IMAGE=debian:bookworm-slim@sha256:abd67ffcfa541b485a3dff59865ab629aa048a6c613e639d36e7456b0b229241 + +FROM ${RUST_IMAGE} AS builder + +WORKDIR /source +COPY . . +RUN cargo build \ + --locked \ + --manifest-path enterprise/Cargo.toml \ + --package anarlog-enterprise-zoom-rtms-worker \ + --bin anarlog-enterprise-zoom-rtms-worker \ + --release + +FROM ${RUNTIME_IMAGE} + +RUN apt-get update \ + && apt-get install --no-install-recommends --yes ca-certificates \ + && rm -rf /var/lib/apt/lists/* \ + && groupadd --system --gid 10001 anarlog \ + && useradd \ + --uid 10001 \ + --gid 10001 \ + --no-create-home \ + --home-dir /nonexistent \ + --shell /usr/sbin/nologin \ + anarlog + +COPY --from=builder /source/enterprise/target/release/anarlog-enterprise-zoom-rtms-worker /usr/local/bin/anarlog-enterprise-zoom-rtms-worker + +ENV RUST_LOG=info +USER 10001:10001 +ENTRYPOINT ["/usr/local/bin/anarlog-enterprise-zoom-rtms-worker"] diff --git a/enterprise/zoom-rtms-worker/src/bin/worker.rs b/enterprise/zoom-rtms-worker/src/bin/worker.rs new file mode 100644 index 0000000000..5b6f65fa9a --- /dev/null +++ b/enterprise/zoom-rtms-worker/src/bin/worker.rs @@ -0,0 +1,52 @@ +use std::env; + +use anarlog_enterprise_zoom_rtms_worker::{ + ZoomRtmsCredentials, ZoomRtmsSession, ZoomRtmsSessionConfig, ZoomRtmsStarted, +}; +use tokio::sync::{mpsc, watch}; +use tracing_subscriber::EnvFilter; + +#[tokio::main] +async fn main() -> anyhow::Result<()> { + tracing_subscriber::fmt() + .with_env_filter( + EnvFilter::try_from_default_env().unwrap_or_else(|_| EnvFilter::new("info")), + ) + .try_init() + .ok(); + + let credentials = ZoomRtmsCredentials::new( + required_env("ANARLOG_ENTERPRISE_ZOOM_CLIENT_ID")?, + required_env("ANARLOG_ENTERPRISE_ZOOM_CLIENT_SECRET")?, + )?; + let started: ZoomRtmsStarted = + serde_json::from_str(&required_env("ANARLOG_ENTERPRISE_ZOOM_STARTED_JSON")?)?; + let mut session = + ZoomRtmsSession::connect(&credentials, started, ZoomRtmsSessionConfig::default()).await?; + let (transcripts_tx, mut transcripts_rx) = + mpsc::channel::(32); + let (shutdown_tx, shutdown_rx) = watch::channel(false); + tokio::spawn(async move { + let _ = tokio::signal::ctrl_c().await; + let _ = shutdown_tx.send(true); + }); + let drain = tokio::spawn(async move { + while let Some(segment) = transcripts_rx.recv().await { + tracing::info!( + sequence = segment.sequence, + text_bytes = segment.text.len(), + "received Zoom RTMS transcript segment" + ); + } + }); + let outcome = session + .stream_transcripts(transcripts_tx, shutdown_rx) + .await?; + drain.await.ok(); + tracing::info!(?outcome, "Zoom RTMS session ended"); + Ok(()) +} + +fn required_env(name: &str) -> anyhow::Result { + env::var(name).map_err(|_| anyhow::anyhow!("missing required configuration: {name}")) +} diff --git a/supabase/migrations/20260821120000_workspace_policies_identity_analytics.sql b/supabase/migrations/20260821120000_workspace_policies_identity_analytics.sql new file mode 100644 index 0000000000..b6f6ec5f8e --- /dev/null +++ b/supabase/migrations/20260821120000_workspace_policies_identity_analytics.sql @@ -0,0 +1,831 @@ +-- Additive enterprise admin controls: workspace policies, usage analytics, +-- SSO/SCIM identity, and domain capture. Older clients ignore unknown tables. + +BEGIN; + +SET LOCAL lock_timeout = '30s'; + +CREATE TABLE public.workspace_policies ( + workspace_id uuid PRIMARY KEY REFERENCES public.workspaces(id) ON DELETE CASCADE, + allowed_share_scopes text[] NOT NULL DEFAULT ARRAY[ + 'restricted', + 'workspace', + 'link', + 'public' + ], + default_share_scope text NOT NULL DEFAULT 'restricted', + retention_days integer, + model_training_opt_out boolean NOT NULL DEFAULT true, + consent_notification_enabled boolean NOT NULL DEFAULT true, + require_sso boolean NOT NULL DEFAULT false, + updated_at timestamptz NOT NULL DEFAULT now(), + CONSTRAINT workspace_policies_scopes_check CHECK ( + allowed_share_scopes <@ ARRAY['restricted', 'workspace', 'link', 'public']::text[] + AND allowed_share_scopes @> ARRAY['restricted']::text[] + AND default_share_scope = ANY (allowed_share_scopes) + ), + CONSTRAINT workspace_policies_retention_check CHECK ( + retention_days IS NULL OR retention_days > 0 + ) +); + +ALTER TABLE public.workspace_policies ENABLE ROW LEVEL SECURITY; + +REVOKE ALL ON TABLE public.workspace_policies + FROM PUBLIC, anon, authenticated; +GRANT ALL ON TABLE public.workspace_policies TO service_role; + +CREATE TABLE public.workspace_verified_domains ( + workspace_id uuid NOT NULL REFERENCES public.workspaces(id) ON DELETE CASCADE, + domain text NOT NULL, + verified_at timestamptz NOT NULL DEFAULT now(), + created_by_user_id uuid REFERENCES auth.users(id) ON DELETE SET NULL, + PRIMARY KEY (workspace_id, domain), + CONSTRAINT workspace_verified_domains_format_check CHECK ( + domain = lower(btrim(domain)) + AND domain ~ '^[a-z0-9]([a-z0-9-]{0,61}[a-z0-9])?(\.[a-z0-9]([a-z0-9-]{0,61}[a-z0-9])?)+$' + ) +); + +ALTER TABLE public.workspace_verified_domains ENABLE ROW LEVEL SECURITY; +REVOKE ALL ON TABLE public.workspace_verified_domains + FROM PUBLIC, anon, authenticated; +GRANT ALL ON TABLE public.workspace_verified_domains TO service_role; + +CREATE UNIQUE INDEX workspace_verified_domains_domain_key + ON public.workspace_verified_domains(domain); + +CREATE TABLE public.workspace_identity_providers ( + workspace_id uuid PRIMARY KEY REFERENCES public.workspaces(id) ON DELETE CASCADE, + protocol text NOT NULL DEFAULT 'saml', + domain text NOT NULL, + scim_token_hash bytea, + created_at timestamptz NOT NULL DEFAULT now(), + updated_at timestamptz NOT NULL DEFAULT now(), + CONSTRAINT workspace_identity_providers_protocol_check CHECK ( + protocol IN ('saml', 'oidc') + ), + CONSTRAINT workspace_identity_providers_token_hash_check CHECK ( + scim_token_hash IS NULL OR octet_length(scim_token_hash) = 32 + ) +); + +ALTER TABLE public.workspace_identity_providers ENABLE ROW LEVEL SECURITY; +REVOKE ALL ON TABLE public.workspace_identity_providers + FROM PUBLIC, anon, authenticated; +GRANT ALL ON TABLE public.workspace_identity_providers TO service_role; + +CREATE OR REPLACE FUNCTION private.require_workspace_manager( + p_workspace_id uuid +) +RETURNS uuid +LANGUAGE plpgsql +STABLE +SECURITY DEFINER +SET search_path = '' +AS $$ +DECLARE + v_actor_id uuid := auth.uid(); +BEGIN + IF v_actor_id IS NULL THEN + RAISE EXCEPTION 'workspace policy operation not permitted' + USING ERRCODE = '42501'; + END IF; + + IF NOT EXISTS ( + SELECT 1 + FROM public.workspaces AS workspace + JOIN public.workspace_memberships AS membership + ON membership.workspace_id = workspace.id + WHERE workspace.id = p_workspace_id + AND workspace.kind = 'shared' + AND workspace.deleted_at IS NULL + AND membership.user_id = v_actor_id + AND membership.role IN ('owner', 'admin') + AND membership.deleted_at IS NULL + ) THEN + RAISE EXCEPTION 'workspace policy operation not permitted' + USING ERRCODE = '42501'; + END IF; + + RETURN v_actor_id; +END; +$$; + +REVOKE ALL ON FUNCTION private.require_workspace_manager(uuid) + FROM PUBLIC, anon, authenticated; + +CREATE OR REPLACE FUNCTION private.require_workspace_member( + p_workspace_id uuid +) +RETURNS uuid +LANGUAGE plpgsql +STABLE +SECURITY DEFINER +SET search_path = '' +AS $$ +DECLARE + v_actor_id uuid := auth.uid(); +BEGIN + IF v_actor_id IS NULL THEN + RAISE EXCEPTION 'workspace policy operation not permitted' + USING ERRCODE = '42501'; + END IF; + + IF NOT EXISTS ( + SELECT 1 + FROM public.workspaces AS workspace + JOIN public.workspace_memberships AS membership + ON membership.workspace_id = workspace.id + WHERE workspace.id = p_workspace_id + AND workspace.kind = 'shared' + AND workspace.deleted_at IS NULL + AND membership.user_id = v_actor_id + AND membership.deleted_at IS NULL + ) THEN + RAISE EXCEPTION 'workspace policy operation not permitted' + USING ERRCODE = '42501'; + END IF; + + RETURN v_actor_id; +END; +$$; + +REVOKE ALL ON FUNCTION private.require_workspace_member(uuid) + FROM PUBLIC, anon, authenticated; + +CREATE OR REPLACE FUNCTION private.get_workspace_policy( + p_workspace_id uuid +) +RETURNS public.workspace_policies +LANGUAGE plpgsql +STABLE +SECURITY DEFINER +SET search_path = '' +AS $$ +DECLARE + v_policy public.workspace_policies; +BEGIN + PERFORM private.require_workspace_member(p_workspace_id); + + SELECT policy.* + INTO v_policy + FROM public.workspace_policies AS policy + WHERE policy.workspace_id = p_workspace_id; + + IF NOT FOUND THEN + v_policy.workspace_id := p_workspace_id; + v_policy.allowed_share_scopes := ARRAY['restricted', 'workspace', 'link', 'public']; + v_policy.default_share_scope := 'restricted'; + v_policy.retention_days := NULL; + v_policy.model_training_opt_out := true; + v_policy.consent_notification_enabled := true; + v_policy.require_sso := false; + v_policy.updated_at := now(); + END IF; + + RETURN v_policy; +END; +$$; + +REVOKE ALL ON FUNCTION private.get_workspace_policy(uuid) + FROM PUBLIC, anon, authenticated; + +CREATE OR REPLACE FUNCTION public.get_workspace_policy( + p_workspace_id uuid +) +RETURNS TABLE ( + workspace_id uuid, + allowed_share_scopes text[], + default_share_scope text, + retention_days integer, + model_training_opt_out boolean, + consent_notification_enabled boolean, + require_sso boolean +) +LANGUAGE plpgsql +STABLE +SECURITY DEFINER +SET search_path = '' +AS $$ +BEGIN + RETURN QUERY + SELECT + policy.workspace_id, + policy.allowed_share_scopes, + policy.default_share_scope, + policy.retention_days, + policy.model_training_opt_out, + policy.consent_notification_enabled, + policy.require_sso + FROM private.get_workspace_policy(p_workspace_id) AS policy; +END; +$$; + +REVOKE ALL ON FUNCTION public.get_workspace_policy(uuid) + FROM PUBLIC, anon, authenticated; +GRANT EXECUTE ON FUNCTION public.get_workspace_policy(uuid) + TO authenticated; + +CREATE OR REPLACE FUNCTION public.set_workspace_policy( + p_workspace_id uuid, + p_allowed_share_scopes text[], + p_default_share_scope text, + p_retention_days integer, + p_model_training_opt_out boolean, + p_consent_notification_enabled boolean, + p_require_sso boolean +) +RETURNS TABLE ( + workspace_id uuid, + allowed_share_scopes text[], + default_share_scope text, + retention_days integer, + model_training_opt_out boolean, + consent_notification_enabled boolean, + require_sso boolean +) +LANGUAGE plpgsql +SECURITY DEFINER +SET search_path = '' +AS $$ +#variable_conflict use_column +BEGIN + PERFORM private.require_workspace_manager(p_workspace_id); + PERFORM private.require_hyprnote_pro_entitlement(); + + INSERT INTO public.workspace_policies ( + workspace_id, + allowed_share_scopes, + default_share_scope, + retention_days, + model_training_opt_out, + consent_notification_enabled, + require_sso, + updated_at + ) VALUES ( + p_workspace_id, + p_allowed_share_scopes, + p_default_share_scope, + p_retention_days, + COALESCE(p_model_training_opt_out, true), + COALESCE(p_consent_notification_enabled, true), + COALESCE(p_require_sso, false), + now() + ) + ON CONFLICT (workspace_id) DO UPDATE SET + allowed_share_scopes = EXCLUDED.allowed_share_scopes, + default_share_scope = EXCLUDED.default_share_scope, + retention_days = EXCLUDED.retention_days, + model_training_opt_out = EXCLUDED.model_training_opt_out, + consent_notification_enabled = EXCLUDED.consent_notification_enabled, + require_sso = EXCLUDED.require_sso, + updated_at = now(); + + RETURN QUERY + SELECT + policy.workspace_id, + policy.allowed_share_scopes, + policy.default_share_scope, + policy.retention_days, + policy.model_training_opt_out, + policy.consent_notification_enabled, + policy.require_sso + FROM public.workspace_policies AS policy + WHERE policy.workspace_id = p_workspace_id; +END; +$$; + +REVOKE ALL ON FUNCTION public.set_workspace_policy(uuid, text[], text, integer, boolean, boolean, boolean) + FROM PUBLIC, anon, authenticated; +GRANT EXECUTE ON FUNCTION public.set_workspace_policy(uuid, text[], text, integer, boolean, boolean, boolean) + TO authenticated; + +CREATE OR REPLACE FUNCTION private.assert_allowed_share_scope( + p_workspace_id uuid, + p_general_scope text +) +RETURNS void +LANGUAGE plpgsql +STABLE +SECURITY DEFINER +SET search_path = '' +AS $$ +DECLARE + v_policy public.workspace_policies%ROWTYPE; +BEGIN + IF p_workspace_id IS NULL THEN + RETURN; + END IF; + + SELECT policy.* + INTO v_policy + FROM public.workspace_policies AS policy + WHERE policy.workspace_id = p_workspace_id; + + IF FOUND + AND NOT (p_general_scope = ANY (v_policy.allowed_share_scopes)) + THEN + RAISE EXCEPTION 'workspace policy forbids this share scope' + USING ERRCODE = '42501'; + END IF; +END; +$$; + +REVOKE ALL ON FUNCTION private.assert_allowed_share_scope(uuid, text) + FROM PUBLIC, anon, authenticated; + +CREATE OR REPLACE FUNCTION private.protected_set_session_share_scope( + p_share_id uuid, + p_general_scope text, + p_general_workspace_id uuid DEFAULT NULL +) +RETURNS TABLE ( + share_id uuid, + general_scope text, + general_workspace_id uuid, + public_slug text, + access_version bigint +) +LANGUAGE plpgsql +SECURITY DEFINER +SET search_path = '' +AS $$ +DECLARE + v_result record; + v_share public.session_shares%ROWTYPE; +BEGIN + SELECT share.* + INTO v_share + FROM public.session_shares AS share + WHERE share.id = p_share_id; + + IF FOUND THEN + PERFORM private.assert_allowed_share_scope( + v_share.workspace_id, + p_general_scope + ); + END IF; + + SELECT * + INTO v_result + FROM private.set_session_share_scope( + p_share_id, + p_general_scope, + p_general_workspace_id + ); + + IF p_general_scope <> 'restricted' THEN + PERFORM private.require_hyprnote_pro_entitlement(); + END IF; + + RETURN QUERY + SELECT + v_result.share_id, + v_result.general_scope, + v_result.general_workspace_id, + v_result.public_slug, + v_result.access_version; +END; +$$; + +CREATE OR REPLACE FUNCTION private.enforce_workspace_retention() +RETURNS integer +LANGUAGE plpgsql +SECURITY DEFINER +SET search_path = '' +AS $$ +DECLARE + v_deleted integer := 0; +BEGIN + UPDATE public.session_shares AS share + SET + deleted_at = now(), + updated_at = now() + FROM public.workspace_policies AS policy + WHERE policy.workspace_id = share.workspace_id + AND policy.retention_days IS NOT NULL + AND share.deleted_at IS NULL + AND share.created_at < now() - make_interval(days => policy.retention_days); + + GET DIAGNOSTICS v_deleted = ROW_COUNT; + + DELETE FROM public.session_share_snapshots AS snapshot + USING public.session_shares AS share + JOIN public.workspace_policies AS policy + ON policy.workspace_id = share.workspace_id + WHERE snapshot.share_id = share.id + AND share.deleted_at IS NOT NULL + AND policy.retention_days IS NOT NULL + AND share.created_at < now() - make_interval(days => policy.retention_days); + + RETURN v_deleted; +END; +$$; + +REVOKE ALL ON FUNCTION private.enforce_workspace_retention() + FROM PUBLIC, anon, authenticated; +GRANT EXECUTE ON FUNCTION private.enforce_workspace_retention() + TO service_role; + +CREATE OR REPLACE FUNCTION public.enforce_workspace_retention() +RETURNS integer +LANGUAGE plpgsql +SECURITY DEFINER +SET search_path = '' +AS $$ +BEGIN + RETURN private.enforce_workspace_retention(); +END; +$$; + +REVOKE ALL ON FUNCTION public.enforce_workspace_retention() + FROM PUBLIC, anon, authenticated; +GRANT EXECUTE ON FUNCTION public.enforce_workspace_retention() + TO service_role; + +CREATE OR REPLACE FUNCTION private.protected_issue_session_share_link( + p_share_id uuid, + p_force_rotate boolean +) +RETURNS TABLE ( + share_id uuid, + link_id uuid, + link_token text, + access_version bigint, + was_created boolean +) +LANGUAGE plpgsql +SECURITY DEFINER +SET search_path = '' +AS $$ +DECLARE + v_result record; + v_share public.session_shares%ROWTYPE; +BEGIN + SELECT share.* + INTO v_share + FROM public.session_shares AS share + WHERE share.id = p_share_id; + + IF FOUND THEN + PERFORM private.assert_allowed_share_scope(v_share.workspace_id, 'link'); + END IF; + + SELECT * + INTO v_result + FROM private.issue_session_share_link(p_share_id, p_force_rotate); + + IF p_force_rotate OR v_result.was_created THEN + PERFORM private.require_hyprnote_pro_entitlement(); + END IF; + + RETURN QUERY + SELECT + v_result.share_id, + v_result.link_id, + v_result.link_token, + v_result.access_version, + v_result.was_created; +END; +$$; + +CREATE OR REPLACE FUNCTION public.get_workspace_usage_overview( + p_workspace_id uuid +) +RETURNS TABLE ( + member_count integer, + pending_invitations integer, + enrolled_devices integer, + shares_created_30d integer, + share_access_events_30d integer, + seat_limit integer, + used_seats integer, + is_billed boolean +) +LANGUAGE plpgsql +STABLE +SECURITY DEFINER +SET search_path = '' +AS $$ +BEGIN + PERFORM private.require_workspace_manager(p_workspace_id); + + RETURN QUERY + SELECT + ( + SELECT count(*)::integer + FROM public.workspace_memberships AS membership + WHERE membership.workspace_id = p_workspace_id + AND membership.deleted_at IS NULL + ), + ( + SELECT count(*)::integer + FROM public.workspace_invitations AS invitation + WHERE invitation.workspace_id = p_workspace_id + AND invitation.accepted_at IS NULL + AND invitation.revoked_at IS NULL + AND invitation.expires_at > now() + ), + ( + SELECT count(*)::integer + FROM public.sync_devices AS device + JOIN public.workspace_memberships AS membership + ON membership.user_id = device.user_id + WHERE membership.workspace_id = p_workspace_id + AND membership.deleted_at IS NULL + ), + ( + SELECT count(*)::integer + FROM public.session_shares AS share + WHERE share.workspace_id = p_workspace_id + AND share.created_at >= now() - interval '30 days' + ), + ( + SELECT count(*)::integer + FROM public.session_access_events AS event + JOIN public.session_shares AS share + ON share.id = event.share_id + WHERE share.workspace_id = p_workspace_id + AND event.created_at >= now() - interval '30 days' + ), + usage.seat_limit, + usage.used_seats, + usage.is_billed + FROM private.get_workspace_seat_usage(p_workspace_id) AS usage; +END; +$$; + +REVOKE ALL ON FUNCTION public.get_workspace_usage_overview(uuid) + FROM PUBLIC, anon, authenticated; +GRANT EXECUTE ON FUNCTION public.get_workspace_usage_overview(uuid) + TO authenticated; + +CREATE OR REPLACE FUNCTION public.claim_workspace_domain( + p_workspace_id uuid, + p_domain text +) +RETURNS TABLE ( + workspace_id uuid, + domain text +) +LANGUAGE plpgsql +SECURITY DEFINER +SET search_path = '' +AS $$ +#variable_conflict use_column +DECLARE + v_domain text := lower(btrim(p_domain)); + v_actor_id uuid; +BEGIN + v_actor_id := private.require_workspace_manager(p_workspace_id); + PERFORM private.require_hyprnote_pro_entitlement(); + + INSERT INTO public.workspace_verified_domains ( + workspace_id, + domain, + created_by_user_id + ) VALUES ( + p_workspace_id, + v_domain, + v_actor_id + ) + ON CONFLICT (workspace_id, domain) DO NOTHING; + + RETURN QUERY + SELECT claimed.workspace_id, claimed.domain + FROM public.workspace_verified_domains AS claimed + WHERE claimed.workspace_id = p_workspace_id + AND claimed.domain = v_domain; +END; +$$; + +REVOKE ALL ON FUNCTION public.claim_workspace_domain(uuid, text) + FROM PUBLIC, anon, authenticated; +GRANT EXECUTE ON FUNCTION public.claim_workspace_domain(uuid, text) + TO authenticated; + +CREATE OR REPLACE FUNCTION private.capture_user_into_verified_domain_workspace() +RETURNS trigger +LANGUAGE plpgsql +SECURITY DEFINER +SET search_path = '' +AS $$ +DECLARE + v_email text := lower(COALESCE(NEW.email, '')); + v_domain text; + v_workspace_id uuid; +BEGIN + IF v_email IS NULL OR position('@' in v_email) = 0 THEN + RETURN NEW; + END IF; + + v_domain := split_part(v_email, '@', 2); + + SELECT claimed.workspace_id + INTO v_workspace_id + FROM public.workspace_verified_domains AS claimed + JOIN public.workspaces AS workspace + ON workspace.id = claimed.workspace_id + WHERE claimed.domain = v_domain + AND workspace.deleted_at IS NULL + AND workspace.kind = 'shared' + LIMIT 1; + + IF v_workspace_id IS NULL THEN + RETURN NEW; + END IF; + + INSERT INTO public.workspace_memberships ( + workspace_id, + user_id, + role + ) VALUES ( + v_workspace_id, + NEW.id, + 'member' + ) + ON CONFLICT DO NOTHING; + + RETURN NEW; +END; +$$; + +DROP TRIGGER IF EXISTS on_auth_user_domain_capture ON auth.users; +CREATE TRIGGER on_auth_user_domain_capture + AFTER INSERT OR UPDATE OF email ON auth.users + FOR EACH ROW + EXECUTE FUNCTION private.capture_user_into_verified_domain_workspace(); + +CREATE OR REPLACE FUNCTION public.rotate_workspace_scim_token( + p_workspace_id uuid, + p_domain text, + p_token text +) +RETURNS void +LANGUAGE plpgsql +SECURITY DEFINER +SET search_path = '' +AS $$ +BEGIN + PERFORM private.require_workspace_manager(p_workspace_id); + PERFORM private.require_hyprnote_pro_entitlement(); + + IF p_token IS NULL OR octet_length(p_token) < 32 THEN + RAISE EXCEPTION 'invalid scim token' + USING ERRCODE = '22023'; + END IF; + + INSERT INTO public.workspace_identity_providers ( + workspace_id, + protocol, + domain, + scim_token_hash, + updated_at + ) VALUES ( + p_workspace_id, + 'saml', + lower(btrim(p_domain)), + extensions.digest(p_token, 'sha256'), + now() + ) + ON CONFLICT (workspace_id) DO UPDATE SET + domain = EXCLUDED.domain, + scim_token_hash = EXCLUDED.scim_token_hash, + updated_at = now(); +END; +$$; + +REVOKE ALL ON FUNCTION public.rotate_workspace_scim_token(uuid, text, text) + FROM PUBLIC, anon, authenticated; +GRANT EXECUTE ON FUNCTION public.rotate_workspace_scim_token(uuid, text, text) + TO authenticated; + +CREATE OR REPLACE FUNCTION public.scim_apply_user( + p_token text, + p_email text, + p_active boolean +) +RETURNS TABLE ( + user_id uuid, + workspace_id uuid, + active boolean +) +LANGUAGE plpgsql +SECURITY DEFINER +SET search_path = '' +AS $$ +#variable_conflict use_column +DECLARE + v_provider public.workspace_identity_providers%ROWTYPE; + v_user_id uuid; +BEGIN + IF p_token IS NULL OR octet_length(p_token) < 32 THEN + RAISE EXCEPTION 'invalid scim token' + USING ERRCODE = '42501'; + END IF; + + SELECT provider.* + INTO v_provider + FROM public.workspace_identity_providers AS provider + WHERE provider.scim_token_hash = extensions.digest(p_token, 'sha256'); + + IF NOT FOUND THEN + RAISE EXCEPTION 'invalid scim token' + USING ERRCODE = '42501'; + END IF; + + SELECT users.id + INTO v_user_id + FROM auth.users AS users + WHERE lower(users.email) = lower(btrim(p_email)); + + IF v_user_id IS NULL THEN + RAISE EXCEPTION 'scim user not found' + USING ERRCODE = 'P0002'; + END IF; + + IF COALESCE(p_active, false) THEN + INSERT INTO public.workspace_memberships ( + workspace_id, + user_id, + role + ) VALUES ( + v_provider.workspace_id, + v_user_id, + 'member' + ) + ON CONFLICT DO NOTHING; + + UPDATE public.workspace_memberships AS membership + SET + deleted_at = NULL, + updated_at = now() + WHERE membership.workspace_id = v_provider.workspace_id + AND membership.user_id = v_user_id + AND membership.deleted_at IS NOT NULL; + ELSE + UPDATE public.workspace_memberships AS membership + SET + deleted_at = now(), + updated_at = now() + WHERE membership.workspace_id = v_provider.workspace_id + AND membership.user_id = v_user_id + AND membership.deleted_at IS NULL; + + DELETE FROM public.sync_devices AS device + WHERE device.user_id = v_user_id; + END IF; + + RETURN QUERY + SELECT + v_user_id, + v_provider.workspace_id, + COALESCE(p_active, false); +END; +$$; + +REVOKE ALL ON FUNCTION public.scim_apply_user(text, text, boolean) + FROM PUBLIC, anon, authenticated; +GRANT EXECUTE ON FUNCTION public.scim_apply_user(text, text, boolean) + TO service_role; + +CREATE OR REPLACE FUNCTION public.scim_apply_user_id( + p_token text, + p_user_id uuid, + p_active boolean +) +RETURNS TABLE ( + user_id uuid, + workspace_id uuid, + active boolean +) +LANGUAGE plpgsql +SECURITY DEFINER +SET search_path = '' +AS $$ +DECLARE + v_email text; +BEGIN + SELECT users.email + INTO v_email + FROM auth.users AS users + WHERE users.id = p_user_id; + + IF v_email IS NULL THEN + RAISE EXCEPTION 'scim user not found' + USING ERRCODE = 'P0002'; + END IF; + + RETURN QUERY + SELECT applied.user_id, applied.workspace_id, applied.active + FROM public.scim_apply_user(p_token, v_email, p_active) AS applied; +END; +$$; + +REVOKE ALL ON FUNCTION public.scim_apply_user_id(text, uuid, boolean) + FROM PUBLIC, anon, authenticated; +GRANT EXECUTE ON FUNCTION public.scim_apply_user_id(text, uuid, boolean) + TO service_role; + +COMMIT; diff --git a/supabase/tests/041-workspace-policies-identity-analytics.sql b/supabase/tests/041-workspace-policies-identity-analytics.sql new file mode 100644 index 0000000000..9b729dae77 --- /dev/null +++ b/supabase/tests/041-workspace-policies-identity-analytics.sql @@ -0,0 +1,205 @@ +begin; +select plan(14); + +select tests.create_supabase_user('policy_owner', 'policy-owner@example.com'); +select tests.create_supabase_user('policy_member', 'policy-member@example.com'); +select tests.create_supabase_user('policy_outsider', 'policy-outsider@example.com'); + +create temporary table workspace_policy_test_state ( + name text primary key, + workspace_id uuid, + share_id uuid +); + +grant all on workspace_policy_test_state to authenticated, service_role; + +reset role; + +update auth.users +set email_confirmed_at = now() +where id in ( + tests.get_supabase_uid('policy_owner'), + tests.get_supabase_uid('policy_member'), + tests.get_supabase_uid('policy_outsider') +); + +select tests.authenticate_as_hyprnote_pro('policy_owner'); + +select lives_ok( + $$ + insert into workspace_policy_test_state (name, workspace_id) + select 'hq', workspace_id from public.create_workspace('Policy HQ') + $$, + 'The owner creates a shared workspace' +); + +select results_eq( + $$ + select default_share_scope, retention_days, model_training_opt_out + from public.get_workspace_policy( + (select workspace_id from workspace_policy_test_state where name = 'hq') + ) + $$, + $$values ('restricted'::text, null::integer, true)$$, + 'A new workspace has default-off public sharing extras and training opt-out' +); + +select lives_ok( + $$ + select * from public.set_workspace_policy( + (select workspace_id from workspace_policy_test_state where name = 'hq'), + array['restricted', 'workspace']::text[], + 'restricted', + 30, + true, + true, + false + ) + $$, + 'An admin can disable public and link sharing and set a retention window' +); + +select lives_ok( + $$ + insert into workspace_policy_test_state (name, share_id) + select 'share', share_id + from public.create_session_share( + (select workspace_id from workspace_policy_test_state where name = 'hq'), + 'session-policy-1' + ) + $$, + 'The owner can still create a restricted share' +); + +select throws_ok( + $$ + select * from public.set_session_share_scope( + (select share_id from workspace_policy_test_state where name = 'share'), + 'public', + null + ) + $$, + '42501', + 'workspace policy forbids this share scope', + 'Public sharing is rejected after the org policy disables it' +); + +select throws_ok( + $$ + select * from public.enable_session_share_link( + (select share_id from workspace_policy_test_state where name = 'share') + ) + $$, + '42501', + 'workspace policy forbids this share scope', + 'Link sharing is rejected after the org policy disables it' +); + +select results_eq( + $$ + select member_count, used_seats + from public.get_workspace_usage_overview( + (select workspace_id from workspace_policy_test_state where name = 'hq') + ) + $$, + $$values (1, 1)$$, + 'Admins see member and seat counts without reading note content' +); + +select tests.clear_authentication(); +select tests.authenticate_as('policy_outsider'); + +select throws_ok( + $$ + select * from public.get_workspace_policy( + (select workspace_id from workspace_policy_test_state where name = 'hq') + ) + $$, + '42501', + 'workspace policy operation not permitted', + 'Non-members cannot read workspace policies' +); + +select tests.clear_authentication(); +reset role; + +select lives_ok( + $$ + insert into public.workspace_memberships (workspace_id, user_id, role) + values ( + (select workspace_id from workspace_policy_test_state where name = 'hq'), + tests.get_supabase_uid('policy_member'), + 'member' + ) + $$, + 'The owner can add a member before checking client policy reads' +); + +select tests.clear_authentication(); +select tests.authenticate_as('policy_member'); + +select results_eq( + $$ + select allowed_share_scopes + from public.get_workspace_policy( + (select workspace_id from workspace_policy_test_state where name = 'hq') + ) + $$, + $$values (array['restricted', 'workspace']::text[])$$, + 'Members can read allowed share scopes so clients honor org policy' +); + +select tests.clear_authentication(); +select tests.authenticate_as_hyprnote_pro('policy_owner'); + +select lives_ok( + $$ + select * from public.rotate_workspace_scim_token( + (select workspace_id from workspace_policy_test_state where name = 'hq'), + 'example.com', + 'scim-token-0123456789abcdef0123456789abcdef' + ) + $$, + 'An admin can install a SCIM token for the workspace' +); + +select tests.clear_authentication(); +reset role; +select tests.authenticate_as_service_role(); + +select lives_ok( + $$ + select * from public.scim_apply_user( + 'scim-token-0123456789abcdef0123456789abcdef', + 'policy-member@example.com', + true + ) + $$, + 'SCIM provisioning adds the IdP user to the workspace' +); + +select lives_ok( + $$ + select * from public.scim_apply_user( + 'scim-token-0123456789abcdef0123456789abcdef', + 'policy-member@example.com', + false + ) + $$, + 'SCIM deprovisioning revokes workspace membership' +); + +select is( + ( + select count(*) + from public.workspace_memberships + where workspace_id = (select workspace_id from workspace_policy_test_state where name = 'hq') + and user_id = tests.get_supabase_uid('policy_member') + and deleted_at is null + ), + 0::bigint, + 'Deprovisioned members have no active workspace membership' +); + +select * from finish(); +rollback;